發送的正則表達式服務器端在我的申請,我建立一個查詢對象的一些東西像下面如何在流星
Object {pointType: /analog/i, _id: Object}
我試圖把它保存在session變量,
Session.set("currentPointsQueryObject",queryObj);
然後在單擊事件我得到這個對象
var res= Session.get("currentPointsQueryObject");
console.log(res);
但在這裏我得到像下面
Object {pointType: Object, _id: Object}
同時,我也從會話變量歌廳它像
var group_id=Session.get("currentGroupId");
這是工作的罰款發送GROUP_ID服務器 (它在服務器日誌顯示ID)
然後,我已經嘗試將其存儲在全局變量中,如預期返回
像下面的點擊事件
Object {pointType: /analog/i, _id: Object}
但是當我把它發給服務器側方法(後的console.log立即線())
Meteor.call("updateGroupPoints",res,function(err,data){
console.log("updated points");
console.log(data);
});
當我在服務器控制檯登錄res
,它顯示
{ pointType: {}, _id: { '$nin': [] } }
Althoug我在pointType
中有一些東西,它沒有傳遞給服務器。
任何人都有想法,這是關係到存儲的事情嗎?
Thx的幫助,它的工作 – user1934044 2014-10-03 12:19:15