文件名称:meteor-undo-redo:为 Meteor 撤消重做
文件大小:1.05MB
文件格式:ZIP
更新时间:2024-08-24 16:25:39
JavaScript
为 Meteor 撤消/重做 该包用于根据包babrahams:transactions进行的事务为最终用户提供无限的撤消/重做堆栈。 示例应用程序位于 示例应用程序的回购在。 快速开始 meteor add babrahams:undo-redo 该包公开了一个名为tx的对象,该对象具有使撤消/重做堆栈运行所需的所有方法。 您可以使用包含{tx: true}的选项散列进行写入,如下所示,使它们可以撤消/重做(请注意,不支持upsert ): 代替: Posts.insert({text: "My post"}); 写: Posts.insert({text: "My post"}, {tx: true}); 代替: Posts.update({_id: post_id}, {$set: {text: "My improved post"}}); 写: Posts