문제

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