最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - creating a list using meteor - Stack Overflow

matteradmin6PV0评论

Hi I am creating a money lend tracking website using meteor. It is my first attempt to learn meteor js. I tried writing the following piece of code in my js file

var lists = new Meteor.Collection("Lists");

But when I go back in Chrome developer console after refreshing page and type

lists
ReferenceError: lists is not defined
get stack: function () { [native code] }
message: "lists is not defined"
set stack: function () { [native code] }
__proto__: Error

Is there something i am missing ? Could any one help me.

Hi I am creating a money lend tracking website using meteor. It is my first attempt to learn meteor js. I tried writing the following piece of code in my js file

var lists = new Meteor.Collection("Lists");

But when I go back in Chrome developer console after refreshing page and type

lists
ReferenceError: lists is not defined
get stack: function () { [native code] }
message: "lists is not defined"
set stack: function () { [native code] }
__proto__: Error

Is there something i am missing ? Could any one help me.

Share Improve this question edited Apr 14, 2013 at 4:14 mu is too short 435k71 gold badges859 silver badges818 bronze badges asked Apr 14, 2013 at 4:03 sreeprasadsreeprasad 3,2603 gold badges29 silver badges34 bronze badges 2
  • 3 Why are you refreshing the page? And where is this line of code found? You just said "in my js file". Is it in the global scope? Otherwise lists isn't globally available – Ian Commented Apr 14, 2013 at 4:08
  • i have added this line as the first line in lendLibrary.js file. – sreeprasad Commented Apr 14, 2013 at 4:11
Add a ment  | 

3 Answers 3

Reset to default 6

You can't access lists from your web console because code is scoped with each file. In meteor your code would be run as

function() {
    var lists = new Meteor.Collection("Lists");
    ....
}

So to access your collection in the console you need to globally scope it by changing your line to:

lists = new Meteor.Collection("Lists");

So that lists can be used anywhere such as other files and the webkit console

Those using the book, "Getting Started with meteor.js", from which this example originates.... are instructed by the author to use the var keyword before "lists", thereby local scoping that variable and causing the mismatch between what the book says you should see and what you actually see in a browser console. This is a mistake in the book and I have been unable to find any online errata for the book.

From the book "Getting Started with Meteor.js JavaScript"

Errata type: Code| Page number: Chapter 2. Reactive Programming… It's Alive!, | Errata date: 18-4-2013

In the example:

var lists = new Meteor.Collection("Lists");

should read instead

lists = new Meteor.Collection("Lists");

The reason is that "...Meteor 0.6 has added file-level JavaScript variable
scoping. Variables declared with var at the outermost level of a JavaScript
source file are now private to that file. Remove the var to share a value
between files."

Post a comment

comment list (0)

  1. No comments so far