微信小程序中如何使用setData修改数组或对

2024年11月27日 15:39
有1个网友回答
网友(1):

这样试试:
showDeleteBtn: function(event)
{
var index = event.currentTarget.id;
this.data.todos[index].isDelete = true;
this.setData(
{
todos: this.data.todos
});
)