The practice of using jquery in Node.js _node.js

Source: Internet
Author: User

First, we have to install jquery, npm install jquery. The version after installation is 3.1.0

Then, the first feeling we will use var $ = require (' jquery ').

Save the following code as App.js

var $ = require (' jquery ')
$ ("Body"). Append ("<div>TEST</div>");
Console.log ($ ("body"). html ());

Run node app.js. Hint Error:

Error:jquery requires a window with a document

So what do we do?

In NPM's jquery installation package home page, we see that we can use Jsdom to simulate a document.

Require ("Jsdom"). Env ("", Function (err, window) {
if (err) {
console.error (err);
return;
}
var $ = require ("jquery") (window);
$ ("Body"). Append ("<div>TEST</div>");
Console.log ($ ("body"). html ());

Run, and the result is OK.

The code above, one of the things that makes me uncomfortable is to operate in a callback function. So what can we do to not introduce jquery into the callback function?

var $ = require (' jquery ') (Require ("Jsdom"). Jsdom (). DefaultView);
$ ("Body"). Append ("<div>TEST</div>");
Console.log ($ ("body"). html ());

Run OK as well.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.