我正在使用以下内容创建一个新项目:
$mkdir X
$cd X
$npm install jquery
然后创建一个新的app.js文件:
var http = require('http');
var $ = require('jquery');
console.log("http="+ http);
console.log("$="+ $);
console.log("$.getJSON="+ $.getJSON);
输出是:
http=[object Object]
$=function ( w ) {...}
$.getJSON=undefined
为什么$ .getJSON未定义?使用最新的io.js v2.4.0。
答案 0 :(得分:2)
您正尝试在Node.js中创建XHR
。这不会起作用,因为Node.js只是一个JavaScript运行时,并且与浏览器不同。
如果您想通过HTTP协议从某个地方获取内容,可以使用request
之类的内容。例如(来自官方文档):
var request = require('request');
request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Show the HTML for the Google homepage.
}
})
您可以查看this answer(也来自我),了解有关将jQuery与Node.js结合使用的更多信息。
更新[d再次!]:
所以你想知道jQuery节点模块如何区分浏览器和节点环境?当您在提供require
和module
的CommonJS或类似环境中module.exports
jQuery时,您得到的是工厂而不是实际的jQuery对象。如下所示,该工厂可用于创建jQuery对象,即使用jsdom:
let jsdom = require("jsdom");
let $ = null;
jsdom.env(
"http://quaintous.com/2015/07/31/jquery-node-mystery/",
function (err, window) {
$ = require('jQuery')(window);
}
);
以下是jQuery如何区分浏览器和io.js(或Node.js):
(function( global, factory ) {
if ( typeof module === "object" && typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper `window`
// is present, execute the factory and get jQuery.
// For environments that do not have a `window` with a `document`
// (such as Node.js), expose a factory as module.exports.
// This accentuates the need for the creation of a real `window`.
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info.
module.exports = global.document ?
factory( global, true ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
// Pass this if window is not defined yet
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
// implementation
return jQuery;
}));
我会使用jQuery的npm包适用于custom builds,而不是与require
一起使用!
<强>更新强>:
我觉得这个主题恰好让一些开发人员忙碌,所以我结合了我自己的几个答案并写了关于整个jQuery / Node组合的an article!
答案 1 :(得分:0)
如果要同步加载jquery,可以使用类似下面的内容
var jsdom = require('jsdom');
var jQuery = require('jquery')(jsdom.jsdom('<p><a>jsdom!</a></p>').defaultView);