gpt4 book ai didi

jquery - 从 Node 初始化 jquery

转载 作者:太空宇宙 更新时间:2023-11-03 23:36:36 24 4
gpt4 key购买 nike

我正在使用以下内容创建一个新项目:

$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。

最佳答案

您正在尝试创建 XHR来自 Node.js 内部。这是行不通的,因为 Node.js 只是一个 JavaScript 运行时,与浏览器不同。

如果您想通过 HTTP 协议(protocol)从某个地方获取某些内容,您可以使用类似 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 (也来 self )了解有关将 jQuery 与 Node.js 结合使用的更多信息。

更新[再次!]:

那么您想知道 jQuery Node 模块如何区分浏览器和 Node 环境?当您在提供 modulemodule.exports 的 CommonJS 或类似环境中require 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 一起使用!

更新:

我有一种感觉,这个主题恰好让一些开发人员很忙,所以我结合了我自己的答案并写了 an article关于整个 jQuery/Node 组合!

关于jquery - 从 Node 初始化 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31654977/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com