我是node.js的新手,我只是想学习如何使用Express和Jade。看起来jade.js中的这一行引起了某种问题:window.jade = require("jade");
我可以很好地启动我的服务器,但是当我在我的浏览器中访问它时,我得到了这个错误:
ReferenceError: window is not defined
at C:\Users\User\Desktop\node-js-web\node_modules\jade\jade.js:3142:1
at Object.<anonymous> (C:\Users\User\Des
在使用MongoDB和Node.js更新我的文档时,我得到了以下错误。
错误:
TypeError: db.profile.updateOne is not a function
at exports.updateProfile (C:\xampp\htdocs\cit_node\route\route.js:101:13)
at Layer.handle [as handle_request] (C:\xampp\htdocs\cit_node\node_modules\e
xpress\lib\router\layer.js:95:5)
at next (C:\xa
我该如何处理这个问题?我的jade文件是:
extends layout
block content
h1.
User List
ul
each user, i in userlist
li
a(href="mailto:#{user.email}")= user.username
我得到以下错误:
TypeError: C:\node\nodetest1\views\userlist.jade:7
5| User List
6| u
我正在调用一个Firebase可调用函数,并返回Firebase指定的promise,但我得到了这个错误:
未处理的错误RangeError:已超过最大调用堆栈大小
代码如下:
exports.getProductInfo = functions.https.onCall((data, context) => {
// Message text passed from the client.
const product = data.product;
// Authentication / user information is automatically added to
我是节点的新手。
我在跟踪错误,
TypeError: req.redirect is not a function
at Post.create (/var/www/html/node_blog/index.js:40:7)
at /var/www/html/node_blog/node_modules/mongoose/lib/utils.js:276:16
at Function.<anonymous> (/var/www/html/node_blog/node_modules/mongoose/lib/model.js:4798:21)(/var/w
我在./components/App.component.js中遇到意外的令牌错误,因为已经为react和es2015提供了预置错误。我尝试了每种预置的组合
Module parse failed: /home/krishna/AndroidStudioProjects/jancan/web/components/App.component.js Unexpected token (5:2)
You may need an appropriate loader to handle this file type.
SyntaxError: Unexpected token (5:2)
a
下面是解决方案:我在AngularJS/Node.JS中有一个表单,它从MongoDB中提取表单问题,并为每个答案分配值。我昨晚杀了我的MongoDB数据库。幸运的是,JSON文件仍然可用。使用JSON文件创建了两个新集合(与前一个数据库相同的名称),但当我试图完成表单并使用名为previous的数组将数据回发到数据库对象时,我得到了这个错误:
Error
at MongooseError.CastError ((HIDDEN)/node_modules/mongoose/lib/error/cast.js:18:16)
at ObjectId.cast ((HIDDEN)
我有一些关于new date ()的错误;我使用了node js和插件express npm,我构建了变量date,但是一些错误的编译是错误的
这是我的代码.js
var update_time = new Date();
update_time.formatDate("y/m/d");
然后我运行node this is error
/home/kingdark/Repos/api/epg/node_modules/xml2js/lib/xml2js.js:216
throw ex;
^
TypeErro
我正在使用Axios对.NET核心API进行API调用,该调用来自一个。在一个屏幕上,我有类似的代码运行得很好,但是它在这里不能工作,并抛出一个错误:
[Unhandled promise rejection: TypeError: undefined is not an object (evaluating 'request.title')]
at node_modules\react-native\Libraries\Lists\FlatList.js:597:25 in renderer
at node_modules\react-native\Libraries\Lis
我尝试获取每个子集合( rating )的所有文档,并设置foobar文档的平均评分,但在我的一个可调用函数中不断收到以下错误:
Unhandled error RangeError: Maximum call stack size exceeded
at isLength (/srv/node_modules/lodash/lodash.js:11713:22)
at isArrayLike (/srv/node_modules/lodash/lodash.js:11333:31)
at keys (/srv/node_modules/lodash/lodash.js
我使用Express创建了一个Node.js项目,并在使用自定义路由时获得了此异常。
500 TypeError: fn不是回调函数(/WallaceBot/WallaceBot/node_modules/express/lib/router/index.js:246:11) at param (/WallaceBot/WallaceBot/node_modules/express/lib/router/index.js:246:11) at pass (/WallaceBot/WallaceBot/node_modules/express/lib/router/index.js:253:5
我正在discord.js上创建我的机器人,我需要帮助。就像bot正在工作一样,但是当我使用/play命令时,我会在控制台中得到一个错误。
TypeError: Cannot read properties of undefined (reading 'displayVoiceState')
at Client.<anonymous> (/home/runner/LuzeNAI-v09/events/Guild/voiceStateUpdate.js:12:35)
at Client.emit (node:events:539:35)
at
因此,基本上,我试图使用message.mentions.channels向特定频道发送通知。
ex !announce #announcements Today is a great day!
错误:
(node:5516) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'channels' of undefined
at Object.module.exports.execute (C:\Users\Zarko\Desktop\Stackoverflow\commands\Answ
在过去的一周里,我一直在尝试Keystone CMS,我意识到如果您用在post类别部分中创建的类别标记您的文章,您将得到以下错误:
TypeError: Object #<Object> has no method 'each'
at Promise.<anonymous> (/Users/clippetmac/Sites/keystone/routes/views/blog.js:31:10)
at Promise.<anonymous> (/Users/clippetmac/Sites/keystone/node_modules
我正在尝试使用代理选项和gulp作为任务主…来将webpack服务器与浏览器同步集成在一起获取此错误
TypeError: this.sockWrite is not a function
at /.../node_modules/webpack-dev-server/lib/Server.js:29:8
at Compiler.applyPlugins (/.../node_modules/tapable/lib/Tapable.js:26:37)
at Compiler.compile (/.../node_modules/webpack/lib/Compiler.js:390
我有一些传入Node.js的JSON,我试图解析它并在页面上显示它。但是,在对堆栈溢出进行搜索并尝试各种解决方案(目前正在阅读)之后,我将收到以下错误:
TypeError: D:\Programming\node\yale\views\index.jade:10
8| //- p= post.comments[1].data
9| each comment in post.comments
> 10| each text in comment.data
11|
下面的错误导致我的Firebase队列初始化失败。我正在使用Firebase 3。
Task was malformed
堆栈跟踪
"Error: Task was malformed\n at Object.update
(/Users/kanishkanagaraj/JeetLab/BetMe/firebase-queue/node_modules/firebase-queue/dist/lib/queue_worker.js:446:27)\n
at ei
(/Users/kanishkanagaraj/JeetLab/BetMe/firebase-queue/node_m
我以前从未用过node.js。但是遵循solr安全代理的中的步骤。一切都很好,但它给了我这个警告。我知道我必须设置最大侦听器,但不知道如何设置以及在哪里设置。请帮帮我。
(node) warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit.
Trace
at addListener (events.js:160:15)
at /home/abc/node_modules/solr-securit
我在AWS的无服务器部署中遇到了问题。我是个新手,所以我不确定问题出在哪里。
我在网上找到了一些解决方案,但都没有奏效,所以任何想法都会被广泛接受。此外,我知道这里有一个非常类似的问题,但那个解决方案不起作用,在询问更多细节后,没有人回应,所以我提出了一个新的问题。请帮帮我!
Error: Unknown object type "asyncfunction"
at Object._object (/Users/mick/Desktop/service/api-user-service/node_modules/object-hash/index.js:21
我把我的解决方案从11角升级到12度。在角度12中获得ng build生产的问题。
问题:
Css脚本9d2c30b5b89587c78732.css-错误: D:\Angular\node_modules\postcss-ordered-values\dist\lib\getValue.js:22:38 at D:\Angular\node_modules\postcss-ordered-values\dist\lib\getValue.js:22:38 at Array.reduce () at getValue (D:\Angular\node_modules\postcss-order
普通的JSON对我来说很好,比如{id:1,"name"="test"}被正确序列化,但是JSON对象中的定义函数没有被正确序列化。
下面的是代码
var s = require("serialijse")
var o = {"b":function (){alert('hello world');}}
var str = s.serialize(o);
console.log(str);
错误显示为
/Users/acid/node_js/node_modules/serialijse
在通过"/sync/“API请求同步用户手推车时,我反复看到以下错误。每当用户更改购物车的内容时,都会调用它。
VersionError:没有找到id "2y4b1hq601cd013e0af25e32“version 4 modifiedPaths "cart,cart.items,(/node_modules/mongoose/lib/error/version.js:18:17) at generateVersionError (/node_ VersionError /mongoose/lib/modules. at :398:10) at model.Mod