2
在/lib/global.js
我:如何從Meteor shell中更改客戶端變量的值?
Template.footer.helpers({
footerButtons: function(){
return footerButtons;
}
});
然後從流星殼我做:
footerButtons = ['x','y','z'];
我在客戶端Spacebars助手使用
footerButtons = ['a', 'b', 'c'];
後,我跑了這個客戶端幫手沒有更新。
流星shell命令可以更改客戶端變量值嗎?
是的。我爲我的問題添加了更多解釋。 :) –
不,更新流星shell中的變量不會影響其在客戶端上的值。通常,您可以使用發佈來影響來自服務器的客戶端更改。 – Sean