我无法在 Template.my.rendered 中获取数据,但在 Chrome 的控制台中可以。这是我的代码:
html:
<Template name="moitorContent"> <div class="tab-pane active" id="1"> ........ </div> </Template>
js:
Template.moitorContent.rendered = function(){ 如果(!this._rendered){ this._rendered = true; console.log(Svse.find({}).fetch()); } }
使用 localhost:3000 打开 chrome 时,
控制台信息是“[]”
但是在chrome的控制台中输入它们
console.log(Svse.find({}).fetch());
console.log 可以获取数据
像这样:
知道我做错了什么吗?
任何建议表示赞赏!