首先,我想注意到我是 Meteor 的初学者。我不知道为什么这段代码:
Meteor.methods =
fun: ->
"This is message."
if Meteor.isClient
Template.hello.greeting = ->
"Welcome to FirstApp."
Template.hello.events =
"click input": ->
console.log "You pressed the button."
当这一行在浏览器控制台中输入时:
Meteor.call("fun", function(err, res) { if(err) alert(err); else alert(res); });
警报:错误:找不到方法 [404] 而不是“这是消息。”。为什么乐趣是不确定的?