$.getJSON('https://api.twitch.tv/kraken/channels/' + SLoppierKitty7, function(channel) {
if (channel["stream"] == null) {
var live ="no"
} else {
var live ="yes"
}
を必要としますが、私はそれを実行したとき、私は次のエラーを取得Nodejs jQueryのは、私のコードですjsdom
E:\Sloppers bot\node_modules\jQuery\lib\node-jquery.js:5 window = require('jsdom').jsdom().createWindow(); ^
TypeError: require(...).jsdom(...).createWindow is not a function at create (E:\Sloppers bot\node_modules\jQuery\lib\node-jquery.js:5:39) at E:\Sloppers bot\node_modules\jQuery\lib\node-jquery.js:9435:18 at Object. (E:\Sloppers bot\node_modules\jQuery\lib\node-jquery.js:9437:2) at Module._compile (module.js:434:26) at Object.Module._extensions..js (module.js:452:10) at Module.load (module.js:355:32) at Function.Module._load (module.js:310:12) at Module.require (module.js:365:17) at require (module.js:384:17) at Object. (E:\Sloppers bot\bot.js:2:9)
これはボットのために、私は
を働いている私が行うのですか何
jqueryを使用してnodejsのjsonデータを要求する理由はありますか? –
$ .getJSONを超えてjqueryが必要な場合を除き、NodeのネイティブHTTPモジュールのより単純なラッパーであるhttps://www.npmjs.com/package/requestを使用することをお勧めします。 – tmslnz