Вопрос

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