11

Meteorでビンゴゲームをやっています。エラーが発生しましたが、それは JS ファイルにあるため (そして私は Coffee を書いています)、どこから来ているのかわかりません。

完全なエラーは次のとおりです。

ReferenceError: Console is not defined
    at app/Bingo.coffee.js:465:12
    at run (/Users/ppedrazzi/Dropbox/Paul's Stuff/MyApps/Meteor/bingo/.meteor/local/build/server/server.js:283:63)
    at Array.forEach (native)
    at Function._.each._.forEach (/usr/local/meteor/lib/node_modules/underscore/underscore.js:79:11)
    at run (/Users/ppedrazzi/Dropbox/Paul's Stuff/MyApps/Meteor/bingo/.meteor/local/build/server/server.js:283:7)

コーヒーとhtmlファイルをここの要点に配置しました: https://gist.github.com/ppedrazzi/5303493

洞察をありがとう!!

4

2 に答える 2

33

の 334 行目のように見えますbingo.coffee

JavaScript ではすべて大文字と小文字が区別されるため、小文字を使用しますc

console.log "Server started and collections cleared."

それ以外の

Console.log "Server started and collections cleared."

構文エラーを修正する可能性があります

于 2013-04-03T17:59:34.190 に答える