如何直接設置登錄用戶?像流星 - 設置登錄用戶
Picker.route('sayhi', (params, req, res) => {
if (req.method === 'POST') {
const customUserId = getCustomUserId(req.headers);
Meteor.setUserId(customUserId);
console.log("hey I'm", Meteor.user());
res.end('ok');
}
});
謝謝,到目前爲止效果很好。您還需要在您的Meteor依賴項中包含DDPCommon軟件包 – Guig
沒錯。我應該也可以把它寫在答案中。 –
我覺得這個命令是'流星加ddp-common' :)感謝編輯 – Guig