I'm trying to remove a model from my collection, but I don't want to lose the view of that model on my front end (it's a summary screen).

I'm using this at the moment to remove the model:

groupChats.remove(chatid);

Is there any way to do this, or is it not possible? (I'm guessing that somewhere I can unbind the two, but no idea how to, or where it is documented).

有帮助吗?

解决方案

Solution provided by Cheng Ping Onn in comments:

groupChats.remove(chatid, {silent: true});
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top