0
這個流星服務器代碼預計console.log
客戶端標題,但connection
對象是未定義的。服務器內部方法調用,this.connection返回undefined
如何獲取服務器代碼中的客戶端頭?由於
//server.js
Meteor.methods({
'someName':() => {
let header = this.connection.httpHeaders;
console.log(this.connection);
}
});
// client.js
Meteor.call('someName', params, (err, res) => {
}
);