Home > Article > Web Front-end > What to use to import resources in es6
In es6, you can use the import statement or import() to import resources. The import command is used to import a specified module (resource file), with the syntax "import {member} from 'module identifier'"; import() is used to import files or modules, with the syntax "import (resource location)".
The operating environment of this tutorial: Windows 7 system, ECMAScript version 6, Dell G3 computer.
Modular development can be carried out in es6, which is defined in the ES6 modular specification:
Each js file is an independent module
Use the import keyword to import other module members
Use the expost keyword to share module members externally
##export
The module function mainly consists of two commands:export and
import. The
export command is used to specify the external interface of the module, and the
import command is used to import the functions provided by other modules.
export keyword to export the variable.
For example:
//test1.js export var firstName = 'mike' export var lastName = 'Jack'The above code is the
test1.js file, which saves user information. ES6 treats it as a module, which uses the
export command to export three variables to the outside. In addition to the above, there is another way to write
export:
//test1.js var firstName = 'mike' var lastName = 'Jack' export {firstName, lastName}
export In addition to outputting variables, the command can also output functions or classes
export function add(x, y){ return x + y }
exportThe command can appear anywhere in the module, as long as it is at the top level of the module. If it is in block-level scope, an error will be reported, as will the
import command
as
Normally,exportThe output variable is its original name, but it can be renamed using the
as keyword
function v1() { ... } function v2() { ... } export { v1 as streamV1, v2 as streamV2, v2 as streamLatestVersion };
export command to define the external interface of the module, other js files can load this module through the
import command
import {firstName, lastName} from './test1.js' console.log(firstName,lastName)If you want to re-fetch the input variable Name, the
import command should use
as to rename the input variable.
import {lastName as suName} from './test1.js'
importThe variables entered by the command are all read-only because its essence is an input interface. In other words, the interface is not allowed to be rewritten in the script that loads the module.
import {a} from './xxx' a = {} //报错
importThe
from after it specifies the location of the module file. It can be a relative path or an absolute path. The
.js suffix can be omit. If it is just the module name without a path, then there must be a configuration file to tell the JavaScript engine the location of the module
circle.js file, which outputs two methods
area and
circumference.
// circle.js export function area(radius) { return Math.PI * radius * radius; } export function circumference(radius) { return 2 * Math.PI * radius; }Now, load this module.
// main.js import { area, circumference } from './circle'; console.log('圆面积:' + area(4)); console.log('圆周长:' + circumference(14));The above method is to specify the methods to be loaded one by one. The overall loading method is as follows.
import * as circle from './circle'; console.log('圆面积:' + circle.area(4)); console.log('圆周长:' + circle.circumference(14));Note that the object where the module is loaded as a whole (the above example is
circle) should be statically analyzable, so runtime changes are not allowed. The following writing methods are not allowed.
import * as circle from './circle'; // 下面两行都是不允许的 circle.foo = 'hello'; circle.area = function () {};export default command
export default is used to specify the default output for the module
//export-default.js export default function(){ console.log('foo') }When other modules load the module,
importThe command can specify any name for the anonymous function
import cus from './export-default.js'
export defaultThe command can be used before a non-anonymous function, but the function name is invalid outside the module. Loading When, it is loaded as an anonymous function. In essence,
export default is to output a variable or method called
default, and then the system allows you to give it any name
export default function test(){ console.log('test') }Compare normal output and default output
//第一组 export function arc(){ //... } //输出 import {arc} from 'arc' //输入 //第二组 export default arc2(){ //... } //输出 import arc2 from 'arc2' //输入
Summary: exportThe corresponding
import statement needs to use curly brackets,
export default The corresponding
import statement does not require the use of braces. The
export default command is used to specify the default output of the module. Obviously, a module can only have one default output, so
export default is only allowed to be used once in the same module. Therefore, there is no need to add braces after the corresponding import command.
import# The ## statement can be written together with the export
statement<pre class="brush:js;toolbar:false;">export {foo, bar} from &#39;my_module&#39;
//可以简单理解为
import {foo, bar} from &#39;my_module&#39;
export {foo, bar}</pre><p>上面代码中,<code>export
和import
语句可以结合在一起,写成一行。但需要注意的是,写成一行以后,foo
和bar
实际上并没有导入当前模块,只是相当于对外转发了这两个接口,导致当前模块不能直接使用foo
和bar
.
import(specifier)
上面的代码中,import
函数的参数specifier
,指定所要加载的模块的位置。。import
命令能够接受什么参数,import()
函数就能接受什么参数,两者区别主要是后者为动态加载。
import()
返回一个 Promise 对象。下面是一个例子。
const main = document.querySelector('main'); import(`./section-modules/${someVariable}.js`) .then(module => { module.loadPageInto(main); }) .catch(err => { main.textContent = err.message; });
import()
函数可以用在任何地方,不仅仅是模块,非模块的脚本也可以使用。它是运行时执行,也就是说,什么时候运行到这一句,就会加载指定的模块。另外,import()
函数与所加载的模块没有静态连接关系,这点也是与import
语句不相同。import()
类似于 Node 的require
方法,区别主要是前者是异步加载,后者是同步加载。
【相关推荐:javascript视频教程、web前端】
The above is the detailed content of What to use to import resources in es6. For more information, please follow other related articles on the PHP Chinese website!