我试图要求机器人在执行命令时向控制台聊天发送报告,但最终出现了意外错误。我原以为错误会出现在主文件中,但实际上错误来自node_modules
以下是代码(部分)
var CommandName1 = message.content
var CommandName2 = CommandName1.replace(prefix, "")
let time = await date.toLocaleString('en-US');
var user = message.author.tag
va
这两个错误在我每次运行ionic项目时都会出现;它们会出现在我尝试过的所有浏览器上,比如Chrome、Firefox、Microsoft Edge…等。 我还尝试运行运行良好的旧项目,现在显示了相同的错误! Error: Invalid value type
at Function.a.set (index.js:7)
at t.setIsTrutedEnforced (index.js:7)
at index.js:49
Uncaught (in promise) Error: Given action "NormalMode/SetPageData"
我正在编写一个节点-webkit应用程序(基于),并试图导入其他节点模块。我发现,即使尝试导入默认节点模块(如fs和http),也会出现以下错误:
var http = require('http');
AssertionError: missing path
使用堆栈跟踪:
"AssertionError: missing path
at Module.require (module.js:359:3)
at require (module.js:376:17)
at window.require (eval at undefined, <anonymous&g
我正在使用聚合物开发一个应用程序,对于路由,我使用了more-routing组件。它正在工作,但出现以下错误:
Error: Changing routing drivers is not supported {stack: (...), message: "Changing routing drivers is not supported"}message: "Changing routing drivers is not supported"stack: (...)get stack: function () { [native code] }set sta
谷歌Chrome中出现了一些看起来很奇怪的事情:
> var f = [].reverse;
undefined
> f() == window;
true
在Node.js上,我得到了一个不同的结果:
> var f = [].reverse;
undefined
> f() == global;
TypeError: Array.prototype.reverse called on null or undefined
为什么会发生这种情况?这和范围有关吗?
我是node.js和javascript的新手,我想为我的服务器编写一个不和谐的机器人。我在埋伏被困住了。每当我想运行我的代码时,这里就会出现
(node:15928) DeprecationWarning: The message event is deprecated. Use messageCreate instead
(Use `node --trace-deprecation ...` to show where the warning was created)
C:\Users\Lusor\OneDrive\Desktop\dcbot\node_modules\discord.js
此消息总是出现在chrome开发人员工具的控制台中:
Port error: Could not establish connection. Receiving end does not exist. miscellaneous_bindings:232
chromeHidden.Port.dispatchOnDisconnect miscellaneous_bindings:232
Error in event handler for 'undefined': Cannot read property 'instanceId' of undefined Typ
我正在寻找相当于php函数isset()的javascript。我在中尝试过这里描述的方法,但是在firebug中,出现错误
data.del is undefined //Firebug warning/error
if(typeof data.del[0].node != 'undefined') { // codes in my js file
在某些情况下
data is null //Firebug warning/error
if(typeof
我的Heroku应用程序一周前崩溃,我已经故障三天了,但没有成功。尝试将连接代码更改为ssl,并对pg_hba.conf和postgresql.conf文件做了一些更改,但没有成功。
这就是不断出现的错误:
ConnectionError [SequelizeConnectionError]: no pg_hba.conf entry for host "", user "", database "", SSL off
at /app/node_modules/sequelize/lib/dialects/postgres/connect
我试着在GatsbyJ上使用Bootstrap,但它总是让我失望。
有没有一种真正的方法可以导入引导程序而不出现这个错误?WebpackError: Cannot set property 'emulateTransitionEnd' of undefined。
完整错误如下:
WebpackError: Cannot set property 'emulateTransitionEnd' of undefined
- bootstrap.min.js:6
~/bootstrap/dist/js/bootstrap.min.js:6:2684
在任何es6/require()导出到jest测试文件时出现此故障:
const path = require('path');
Fail src\util\datetime.test.js
TypeError: Path must be a string. Rrecieved undefined
at assertPath(path.js:8:11)
at Object.win32.relative(path.js:256:3)
节点4.5.0,npm 2.15.9
Jest 19.0.0,babel-jest: 21.2.0
我正在尝试让jqtouch zepto与phonegap协同工作。我正在使用android进行测试。我已经设置了项目并加载了两个js框架,但在设置jqtouch时出现以下错误
TypeError: Result of expression 'a' [undefined] is not an object. at file:///android_asset/www/jqtouch.min.js:7
这是非min js jqtouch的错误。
TypeError: Result of expression 'hash' [undefined] is not an
当我在description and value部分输入详细信息并点击绿色箭头时,就会出现错误。谁能看看我这头到底出了什么问题!请参阅以下链接
错误消息:
app.js:86 Uncaught TypeError: Cannot read property 'replace' of undefined
at Object.addListItem (app.js:86)
at HTMLButtonElement.ctrlAddItem (app.js:124)
我使用jhipster创建我的项目,并将其与我从themeforest购买的主题相结合。但是当我试图创建一场战争时,我得到了这样的错误。这就像主题组件在使用karma进行测试时出现错误一样
PhantomJS 1.9.8 (Mac OS X) ERROR
TypeError: 'undefined' is not a function (evaluating '$.fn.vectorMap')
at /Volumes/Permanent/STS-Workspace/emsv2/src/main/webapp/scripts/libs/jquery/jve
将Next.js从10更新为11后,运行npm run build时会出现以下错误
Module parse failed: Cannot read property 'forEach' of undefined
File was processed with these loaders: * ./node_modules/next/dist/build/babel/loader/index.js
You may need an additional loader to handle the result of these loaders.
TypeError: Cannot
我一直认为,使用这种console.log公式的优点之一将使您避免出现空指针异常等问题:
var c = undefined;
console.log(c,"foo");
now we get
"undefined 'foo'"
然而,这看起来并没有多大优势,因为使用+运算符似乎可以在连接之前将null和未定义的强制为字符串:
var c = undefined;
console.log(c + "foo");
这只是简单地记录
"undefinedfoo"
在JS中,有没有办法获得一个空指针或在连接字符串与