我不断收到以下行的未定义不是函数Institutions.insert({$set: {admin: Meteor.userId(), title: inst_name, type: inst_type, school: inst_school, description: inst_desc}, $push: {members: Meteor.userID()}});以下是上下文中的完整代码片段。
2014-09-09
我的 Metrace 应用程序(使用 Metrace-boilerplate)出现以下错误server/startup/loadPlugins.js:12:3: Unexpected token }这是代码: 1 Meteor.startup(function () {23 //load plugins4 if(Plugins.find().count() === 0) {5 v
2014-11-01
我在 EC2(亚马逊网络服务)Centos 上安装了 Meteor 1.0 版。创建了一个简单的应用程序:meteor create myapp。从 Web 浏览器访问我的应用程序时,我得到了以下内容:Uncaught TypeError: Cannot read property 'DDP' of undefined follower-livedata.js?74156c6baa89da861f
2014-11-26
我在使用 Meteor 时遇到了这个问题,客户端浏览器中的错误是这样的underscore.js?0a80a8623e1b40b5df5a05582f288ddd586eaa18:1110 Uncaught SyntaxError: Unexpected end of inputmeteor.js?43b7958c1598803e94014f27f5f622b0bddc0aaf:21 Uncaug
2015-04-17
我在项目中使用自动表单,打开表单时出现此错误不确定这是否是因为任何版本或依赖项,我的自动表单无法正常工作,我收到此错误,我有屏幕截图和架构代码,表单代码如下,模板<template name="assesmentNew">{{#ionModal customTemplate=true}}{{# autoForm collection="Assesments" id="assesments-new-
2015-06-16
我正尝试使用 Lepozepo/cloudinary 上传照片这是我的服务器和客户端配置服务器:Cloudinary.config({cloud_name: '*****',api_key: '******',api_secret: '********'});客户端:$.cloudinary.config({cloud_name: "*******"});我尝试使用表单上传图像html 表单代码:
2015-08-10
我在模板助手中遇到了一个奇怪的错误,我希望有人能和我一起看看。基本上,我在客户端控制台中遇到的错误是 getArena().height 未定义。但是,console.log(getArena().height) 返回了正确的属性值。这似乎是导致我遇到错误的计时问题,但我的应用程序实际上正在运行。我可以做些什么来缓解这个控制台错误? //My template helper functi
2016-07-20
我使用 Lepozepo: CLoudinary 包上传图片时,出现了上述错误信息,详细信息如下。console.log 显示上传成功并显示文件。上传后,我没有看到图片。个人资料图片也没有改变。可能是未定义 public_id,因此无法将其保存到 Meteor.userId()?进度条未显示删除按钮错误更改删除代码后出现第三条错误消息代码如下:服务器的 config.jsCloudinary.co
2016-12-06
我正在尝试部署需要 web3 Javascript API 的项目。根据我在网上找到的一些示例,我需要执行以下操作:<script type="text/javascript">var Web3 = require('web3');var web3 = new Web3();web3.setProvider(new web3.providers.HttpProvider("http://local
2017-02-07
这是一个基本的 JavaScript 问题,但还是让我在谷歌上搜索了一段时间。根据这篇文章,下面的代码应该可以工作,但是我在saveBubble中得到了event.target is not a function错误。当我在调试器中尝试event时,错误显示Uncaught: illegal access。arguments数组具有所需的事件,但是为什么当我调用event时它不起作用?export
2016-06-09
上面说的有同样解决方案的问题没有解决方案,所以它不能解决我的问题。我已经安装了 Node,在 cmd 中写入node -v返回v8.10.0。还安装了 meteo,meteor --version返回Meteor 1.6.1。完成这些步骤后,我想创建一个类似此处的应用程序。因此,我写道:meteor create simple-todos然后出现此错误:C:\Users\Rares\AppData
2018-03-27