リストからアイテムを削除しようとしています。ただし、次のコードを使用してそれを行うことはできません。
lists.remove('TjhdAGmCbKB8wCiBg')
他のスレッドで説明されているように、「未定義」というエラーが発生します。この問題を解決するにはどうすればよいですか?
リストからアイテムを削除しようとしています。ただし、次のコードを使用してそれを行うことはできません。
lists.remove('TjhdAGmCbKB8wCiBg')
他のスレッドで説明されているように、「未定義」というエラーが発生します。この問題を解決するにはどうすればよいですか?
This can be caused by one of two issues:
1) You need to define lists
globally if you are doing that in your JavaScript console
For example, if your code is
var lists = new Meteor.Collection("lists");
change it to
lists = new Meteor.Collection("lists");
The second possibility is that you use the same spelling used in its declaration, for example, if you use Lists
to define it then lists
won't work. In JavaScript all definitions are case sensitive.