gpt4 book ai didi

javascript - 只在顶部添加了1行代码

转载 作者:行者123 更新时间:2023-12-03 07:23:45 27 4
gpt4 key购买 nike

我不知道我必须做什么才能使它工作,这里的代码是:

Songs = new Mongo.Collections("songs");

if (Meteor.isClient) {
// counter starts at 0
Session.setDefault('counter', 0);

Template.hello.helpers({
counter: function () {
return Session.get('counter');
}
});

Template.hello.events({
'click button': function () {
// increment the counter when button is clicked
Session.set('counter', Session.get('counter') + 1);
}
});
}

if (Meteor.isServer) {
Meteor.startup(function () {
// code to run on server at startup
});
}

这是错误:类型错误:未定义不是函数 在 newapp.js:1:9

我所做的只是添加 1 行。另外,我将如何在浏览器 Javascript 控制台中运行适当的 Javascript 代码以将项目插入歌曲集合中。我是初学者。

最佳答案

使用Mongo.Collection而不是Mongo.Collections。末尾的 s 不是必需的。

关于javascript - 只在顶部添加了1行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36094441/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com