我想运行一个javascript程序,而不会在node.js中终止:--
这是using while(1);做这件事的正确方法吗?
在这个javascript程序中,我创建了一个websocket &向它列表。
每当数据出现在websocket上时,它就会抛到console.log上。
test.js :--
var tt = new websocket_fun();
function websocket_fun()
{
var temp = new websocket_create();
while(1);
}
function websocket_create()
我希望在未定义类属性this.url的情况下,测试会出现抛出的错误。
我在这里做错什么了?
it('should throw an error if url is not provided by default', async () => {
// Given
const Service = require('./services/websocket')
// When
const Websocket = new Service()
// Then
expect(Websocket.url).toBe
我试图使用WebSocket websocket客户端:连接到一个nodeJS地址(例如:'wss://mycompany.com')。我能够成功地使用在浏览器中测试连接,但在使用nodeJS WebSocket客户端时得到以下连接错误:
error: Error: Unexpected server response: 403
at ClientRequest.<anonymous> (oda-node-sdk\node_modules\ws\lib\websocket.js:579:7)
at ClientRequest.emit (events.js:
我有一个关于Debian9不一致引导的问题,我试图运行我的代码,但是VPS抛给我这个错误。以前,我通常在另一个VPS上安装这个机器人,一切都正常工作,但现在它不工作了。我不知道我是否遗漏了任何模块或错误安装的节点和npm。
TypeError: fields.flat is not a function
at Function.normalizeFields (/home/bot/node_modules/discord.js/src/structures/MessageEmbed.js:443:8)
at MessageEmbed.addFields (/home/bot
这就是我试图通过WebSocket从Leap Motion设备的帧中获取特定元素的方法。
var webSocket = require('ws');
ws = new webSocket('ws://127.0.0.1:6437');
ws.on('message', function(data, flags) {
var frame = JSON.parse(data);
var id = frame.hands;
var pos = id[0];
console.log(pos);
});
JSON对象看起
我正试着用websocket里的数据填满我的vuex商店。我用的是Nuxt。为了处理websocket,我使用了vue-native-websocket包。连接到websocket成功,但提交到存储不起作用,它在每个socket事件Uncaught TypeError: this.store[n] is not a function上触发一个错误
根据Nuxt和vue-native-websocket文档,我使用它们的方法如下:
Plugin native-websocket.js:
import Vue from 'vue'
import VueNativeSock from
我使用JS,并尝试与python服务器一起创建登录。我希望用户向服务器发送密码和名称,并在登录正确时重定向到我的main.html。问题是,当我重定向到主页时,我的websocket就消失了。当我尝试用本地存储解析websocket时,websocket的.send方法就消失了。
let websocket = new WebSocket("ws://192.168.0.177:1234/");
websocket.onmessage = function (event) {
let data = JSON.parse(event.data);
let type = d
我让节点从一个码头容器中运行,我试图编写一些websocket示例。但我遇到了下一个问题:
root@7cd5a41c8eea:/application/webSocketEx# node
> var connection = new WebSocket('ws://html5rocks.websocket.org/echo', ['soap', 'xmpp']);
ReferenceError: WebSocket is not defined
> const WebSocket = require('ws');
u
我试过这样做:
if(!msg.author.hasPermission('MANAGE_MESSAGES')) return msg.channel.send(":x: You don't have permissions. :x:")
但它给了我这个错误:
TypeError: msg.author.hasPermission is not a function
at Client.bot.on.msg (D:\Development\Jaycobe [DISCORD]\index.js:28:28)
at Client.emit (events.
ReferenceError: clinet is not defined
at Client.<anonymous> (/Users/gavinmartin/Desktop/myshadow/main.js:34:9)
at Client.emit (events.js:315:20)
at MessageCreateAction.handle (/Users/gavinmartin/Desktop/myshadow/node_modules/discord.js/src/client/actions/MessageCreate.js:31:14)
at Object.modu
我想让我的机器人检测带有*DD的消息,并避免删除它们
var Discord = require("discord.js");
var bot = new Discord.Client();
bot.on("message", function(message) {
var input = message.content.toUpperCase();
if(input.indexOf("*DD") != -1) {
if (J===null) {
setTimeout(function(
我在我的控制台中得到了这个错误:
(node:33480) UnhandledPromiseRejectionWarning: TypeError: Function.prototype.apply was called on #<Object>, which is
a object and not a function
at MessageCollector.handleCollect (C:\Users\RIJAK\Documents\GitHub\asta-jr\node_modules\discord.js\src\structures\interfaces\Co
嘿,我在那里得到了这个错误,它在12小时或24小时后崩溃了,我必须重新启动它,有没有办法解决这个问题? 错误: /root/Chat/node_modules/ws/lib/websocket.js:334
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
^
Error: WebSocket is not open: readyState 0 (CONNECTING)
at WebSocket.send (/root/Chat/node_modules/
我有一个问题:当我添加角色成员时,我的机器人在我的主服务器上崩溃(reuuu在dev服务器上),在dev服务器上,角色reuuu工作得很好。
我不明白这个错误。
^
TypeError: Cannot read property 'hasPermission' of null
at Client.<anonymous> (/home/container/index.js:96:23)
at Client.emit (events.js:326:22)
at MessageCreateAction.
我从那里得到了一个错误:
/root/diag/node_modules/ws/lib/WebSocket.js:422
event.target = target;
^
TypeError: Cannot assign to read only property 'target' of reserved fields (2, 3) must be empty
at WebSocket.onError (/root/diag/node_modules/ws/lib/WebSocket.js:422:18)
at WebS