如何实现此软件包“ https://github.com/yogiben/meteor-autoform-modals”的更新

<template name="afModalTest">
    {{>autoformModals}}
    {{#afModal class="btn btn-primary" collection="Posts" operation="insert"}}
        Add a new post
    {{/afModal}}


    {{#afModal class="btn btn-primary" collection="Posts" operation="update" doc=singlePost}}
        Update post
    {{/afModal}}
</template>

Template.afModalTest.helpers({
    'singlePost':function(){
        return {
    "_id" : "e9kxyHQmfynYb9yoR",
    "title" : "Suman",
    "content" : "Software Engineer"
       }
    }
});


插入有效,但更新无效。

最佳答案

您是否尝试过通过singlePost._id更改文档?

{{#afModal class="btn btn-primary" collection="Posts" operation="update" doc=singlePost._id}}

关于javascript - 在 meteor 中实现自动形式模式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30341442/

10-09 21:25