ES6函数参数

Posted 飞鹰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6函数参数相关的知识,希望对你有一定的参考价值。

在一些开发语言中,都把函数作为语言的一等公民。对于编写代码来说,函数可以很容易的把类似的代码放在一起,使用的时候统一调用,下面我就简单介绍一下ES6中,对函数参数的处理和新增内容。
一、参数默认值
1、es5中处理

function foo(x,y){
    console.log(x,y)
}
foo("hello") // hello undefind
function foo(x,y){
    y = y || "world" // 可以在es5中实现默认参数功能,但是对于空字符串或者0等,在js判断中判断为false的时候,还需单独判断
    console.log(x,y) // hello world
}
foo("hello")

2、es6中处理:同样遵守惰性赋值原则

function foo(x,y="world"){
    console.log(x,y)
}
foo("hello") // hello world
foo("hello",0) // hello 0

3、默认值要放在参数最后

function foo(x,y=5,z){
    console.log(x,y,z)
}
foo(1,2,3) // 1 2 3 
foo(1,2) // 1,2 undefind
function foo(x,y,z=5){
    console.log(x,y,z)
}
foo(1,2,3) // 1 2 3 
foo(1,2) // 1 2 5

二、与解构赋值结合(形式要完全一样)

function foo({x,y=5}){
    console.log(x,y)
}
foo({}) // undefind 5
foo({x:1}) // 1 5
foo({x:1,y:2}) // 1 2
foo() // Uncaught TypeError: Cannot destructure property \'x\' of \'undefined\' as it is undefined.

实例:封装ajax

function ajax(url,{
    body="",
    method="GET",
    headers={}
}={}){
    console.log(method)
}
ajax("https://www.baidu.com") // GET
ajax("https://www.baidu.com",{
    method:"POST"
}) // POST

三、length属性

function foo(x,y,z,v=5){
    console.log(x,y)
}
console.log(foo.length) // 3 返回没有指定默认值参数个数

四、作用域:形成参数的固定作用域,如果定义域内没有,会沿着作用域链向上找

let x = 2
function foo(x,y=x){
    console.log(y)
}
foo(2) // 2
let x = 1
function foo(y=x){
    let x=2
    console.log(y)
}
foo() // 1
function foo(y=x){
    let x=2
    console.log(y)
}
foo() // Uncaught ReferenceError: x is not defined

五、函数name属性

function foo(){}
console.log(foo.name) // foo
console.log((new Function).name) // anonymous
function foo(){
    console.log(this)
}
foo.bind({name:"lilei"})() // {name:"lilei"} bind用于重指向函数this
function foo(x,y){
    console.log(this,x,y)
}
foo.bind({name:"lilei"})(1,2) // {name:"lilei"} 1 2 

console.log(foo.bind({}).name) // bound foo
console.log((function(){}).bind({}).name) // bound

以上是关于ES6函数参数的主要内容,如果未能解决你的问题,请参考以下文章

ES6之函数参数

ES6函数参数的解构赋值有哪些区别?

ES6 箭头函数

ES6函数的扩展

ES6函数的拓展

ES6小实验-函数的扩展