前端JavaScript高级面试笔记

一、ES6

1、模块化

ES6通过export和import实现模块化

ES6的模块化的基本规则或特点, 欢迎补充:

    1:每一个模块只加载一次, 每一个JS只执行一次, 如果下次再去加载同目录下同文件,直接从内存中读取。 一个模块就是一个单例,或者说就是一个对象;

    2:每一个模块内声明的变量都是局部变量, 不会污染全局作用域;

    3:模块内部的变量或者函数可以通过export导出;

    4:一个模块可以导入别的模块

例子:

 //  util1.js
export default{
a: // export default
} // util2.js
export function fn1(){
console.log('fn1')
}
export function fn2(){
console.log('fn2')
} // index.js
import util from './util.js'
import {fn1,fn2} from './util2.js'

2、编译方法,把es6编译成es5

都是用的babel这个东西

第一种方法:babel(简单的直接用babel)

cmd安装babel-cli,用于在终端使用babel

npm install -g babel-cli

安装babel-core babel-preset-es2015 babel-preser-latest

npm install --save-dev babel-core babel-preset-es2015 babel-preset-latest

通过 babel --version来判断babel版本

想要编译某个js,可以执行下面的代码

babel index.js -o babel1.js

3、使用webpack进行编译

4、使用rollup编译

5、export和export default的区别

在一个文件中,export和import可以用多个

 //demo1.js
export const str = 'hello world' export function f(a){
return a+
}

对应的导入方式

 //demo2.js
import { str, f } from 'demo1' //也可以分开写两次,导入的时候带花括号
 //demo1.js
export default const str = 'hello world'

对应的导入方式

 //demo2.js
import str from 'demo1' //导入的时候没有花括号

export default本质上是输出一个叫default的变量

export default str = str编译以后是exports.default
export function ss() {
console.log('ss')
} export function aa() {
console.log('aa')
}
编译以后是
exports.ss = ss;
exports.aa = aa;
 前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

二、class

对比下面俩组代码

 function Ttest(x,y) {
this.x = x;
this.y = y;
}
Ttest.prototype.adds = function () {
return this.x + this.y
}
var m =new Ttest(,)
console.log(m.adds())
console.log('类型是什么:'+typeof Ttest)
console.log(Ttest === Ttest.prototype.constructor)
console.log(m.__proto__===Ttest.prototype)
 class MathHandle{
constructor(x,y){
this.x=x;
this.y=y;
}
add(){
return this.x+this.y
}
}
console.log('类型是什么:'+typeof MathHandle)
console.log(MathHandle === MathHandle.prototype.constructor)
const m = new MathHandle(,);
console.log(m.add())

上面俩组的代码对比可以知道:class就是一个语法糖,本质还是function

ES6里面的class和js构造函数的区别?

前端JavaScript高级面试笔记

三、promise

先来个例子,用callback实现

 function LoadImg(src, callback, fail) {
var img = document.createElement('img')
img.onload = function () {
callback(img)
}
img.onerror = function () {
fail()
}
img.src = src
}
var src = ''
LoadImg(src,function (img) {
console.log(img.width)
},function () {
console.log('failed')
})

用promise实现

 function LoadImg(src) {
const promise = new Promise(function (resolve, reject) {
var img = document.createElement('img')
img.onload = function () {
resolve(img)
}
img.onerror = function () {
reject()
}
img.src = src
})
return promise
}
var src = 'http://www.imooc.com/static/img/index/logo_new.png'
var result = LoadImg(src)
result.then(function (img) {
console.log(img.width)
},function () {
console.log('failed')
})
result.then(function (img) {
console.log(img.height)
})

Promise语法

前端JavaScript高级面试笔记

四、箭头函数

前端JavaScript高级面试笔记

看上面的例子:箭头函数是普通function的补充,不是所有地方都适用箭头函数,上面的例子告诉我们,箭头函数最大的意义是,this指向了函数体外面最近一层,普通函数指向的是window

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

五、单线程

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

单线程的解决方案之一:异步,但是它有个问题

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

jquery的deferred

http://www.runoob.com/jquery/misc-jquery-deferred.html

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

上面这俩种方式,要比常用的ajax好很多

前端JavaScript高级面试笔记

当新加方法的时候,不用修改已有的方法

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

执行成功的时候,进入then,出现了错误,统一进入catch

例子:

 <!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1,maximum-sacle=1,user-scalable=no">
</head>
<body>
<script type="text/javascript" src="./jquery-3.1.1.js"></script>
<script type="text/javascript">
function LoadImg(src) {
var promise = new Promise(function (resolve, reject) {
var img = document.createElement('img')
img.onload = function () {
resolve(img)
}
img.onerror = function () {
reject("图片加载失败")
}
img.src = src
})
return promise
}
var src = 'http://www.imooc.com/static/img/index/logo_new1.png'
var result = LoadImg(src)
result.then(function (img) {
console.log(, img.width)
return img
}).then(function (img) {
console.log(, img.height)
}).catch(function (ex) {
console.log(ex)
})
</script>
</body>
</html>

上面的解释:onerror里的错误,会进入到catch,这可以表明,使用catch的时候,就不需要在then写第二个参数了,只要出现错误,都会进入到catch里面

前端JavaScript高级面试笔记

第一个result1执行完后,返回result2的promise实例,执行后面的then(如果有第三个,就在后面加一个)

实际效用:第一个请求获取的数据,作为第二个请求的参数

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

总结:

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

前端JavaScript高级面试笔记

上一篇:vue admin mock数据


下一篇:MySQL----数据的显示位宽