4
客戶端代碼傳遞值服務器到客戶端在方法流星
Template.hello.events({
"click": function() {
Meteor.call('Message',function(result){
alert(result);
});
服務器側方法調用
if (Meteor.isServer) {
Meteor.methods({
'Message':function(){
SerialPort.list(function (err, ports) {
ports.forEach(function(port) {
console.log(port.comName);
var atxt = port.comName;
return atxt ;
});//ports end
}); //list end
} //message end
}); //method end
} //server end
上述程序「未定義」打印警告框客戶端。返回atxt沒有返回任何值。請幫我流星 apllication傳遞服務器端返回值訪問客戶端!!!
非常感謝faysal ...... –