0
到模板我有以下模板:流星火焰renderwithdata傳遞文件與自動窗體
Blaze.renderWithData(Template.editUser, data, target);
我想傳遞doc變量:
<template name="editUser">
{{> quickForm collection="Users" doc=doc id="editUserForm" type="update"}}
</template>
我使用使其在酥料餅DIV quickform所要求的,並不真正瞭解數據參數。
我試着用以下的數據:
var data = {doc: Users.find({_id: feature.getId()}).fetch()};
但這似乎並沒有被傳遞一個文檔中的變量文檔的方式。
我找不到如何正確使用它,並想避免會話變量。