我正在研究一个Todo应用程序示例,以了解Pocudb中的未解之处。 我使用AngularJS处理过这个todo应用程序。我可以用文本字段和单选按钮制作待办事项。 Theese todoes显示在输入上方的ui中。
我需要能够在已有的待办事项中更新radiobutton或textfield。
有一个添加和删除功能:
return {
todos: todos,
add: function(text,fundkategori) {
return pouch.post({
type: 'todo',
text: text,
Fundkategori: fundkategori
}).then(util.resolve)
.catch(util.reject);
},
remove: function(todo) {
return pouch.get(todo._id)
.then(function(doc) {
return pouch.remove(doc)
.then(util.resolve, util.reject);
})
.catch(util.reject);
}
};
但是猜测应该有一些更新功能,它需要todo._id
我在这里有一个Plunker:http://plnkr.co/edit/xMdPJ59TG1HgVVYjoVE6?p=preview
// Simon