How to use seajs to write convention in require

php中世界最好的语言
Release: 2018-05-29 11:58:18
Original
1657 people have browsed it

This time I will show you how to use seajs to write conventions inrequire, and what are theprecautionsfor using seajs to write conventions in require. The following is a practical case. Let’s take a look. .

require Writing Conventions

When writing module code using Sea.js, you need to follow some simple rules.

It’s just a specification for writing and debugging! ! ! The built code does not need to follow the following conventions at all! ! ! ! ! !

1. Correct spelling

The first parameter of module factoryConstruction methodmustName itrequire.

// 错误! define(function(req) { // ... }); // 正确! define(function(require) { // ... });
Copy after login

2. Do not modify the

Do not rename therequirefunction, or rename therequirein any scope Assignment.

// 错误 - 重命名 "require"! var req = require, mod = req("./mod"); // 错误 - 重定义 "require"! require = function() {}; // 错误 - 重定义 "require" 为函数参数! function F(require) {} // 错误 - 在内嵌作用域内重定义了 "require"! function F() { var require = function() {}; }
Copy after login

3. Use direct quantities

require The parameter value ofmust be astringdirect quantity.

// 错误! require(myModule); // 错误! require("my-" + "module"); // 错误! require("MY-MODULE".toLowerCase()); // 正确! require("my-module");
Copy after login

When writing module code, you must follow these rules. In fact, just think ofrequireas a grammatical keyword.

About dynamic dependencies

Sometimes you hope to userequirefor conditional loading:

if (todayIsWeekend) require("play"); else require("work");
Copy after login

I believe you have read the case in this article You have mastered the method. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use Koa2 to develop WeChat QR code scanning payment

How to use AngularJS to implement tab pages tab switching

The above is the detailed content of How to use seajs to write convention in require. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!