我的助手中有一个 ReactiveVar,它返回许多要放置在模板中的照片
photoCount:->
Template.instance().rvPhotoCount.get()
img
现在我需要用 photoCount 返回的 # 来响应式地填充我的 html 。我尝试使用{{each photoCount}}<img>
但收到错误
{{#each}} currently only accepts arrays, cursors or falsey values.
我该如何解决这个问题?