对象中有方法的写法
1.1直接写函数 省略属性名 不用写function
const obj ={
fn(){
console.log(8989)
}
}
1.2
带属性名 不重复写函数名
const obj ={
fn: function (){
console.log(8989)
}
}
解读一段代码:
const commonService = () => ({
fn(){
console.log(11)
},
fn2(){
console.log(11)
}
})
//这个即是 commonService是一个箭头函数 然后 返回了一个对象 对象里是两个方法
const intergationApi = {
...commonService()
};
//commonService() 是commonService的调用 commonService() 即是方法的返回值即是上边的对象 ...后即是解构了 所以intergationApi 即是对象里边有两个方法的
console.log(11,intergationApi)
//1.html:42 11 {fn: ƒ, fn2: ƒ}