我收到了insert failed: Method not found
日志消息,它可能是这些线程中描述的结果:
但是,我不知道如何。让我展示代码,希望能更清楚地解释。我正在使用咖啡脚本:
if Meteor.isClient
@VINs = new Meteor.Collection("vins")
scoped_vins = @VINs
Template.vins.events =
"click .icon-plus-sign": ->
console.log "this is #{this}"
realVIN = $("#your-vin").val().replace /\D/g, ''
console.log "user id is: #{Meteor.userId()} vin is #{parseInt(realVIN)}"
VINs.insert number: parseInt(realVIN), owner: Meteor.userId() if Meteor.userId()
$("#your-vin").val('')
else
@VINs = new Meteor.Collection("vins")
我完全是流星的 n00b,但我从上面引用的线程中收集到的是,该集合必须在客户端和服务器上可用。这不是我所做的,还是我正在发展咖啡盲?
谢谢!