-
如何使用Spread Operator来避免不需要的参数:
var params ={
name: "123",
title:"456",
type:'aaa'
}
var { type , ...other} = params;
<CustomComponent type = "normal" number={2} {...other} />
查看全部 -
Spread Operator
const params = {
name:'Jine',
age:21
}
<CustomComponent {...params}/>
查看全部 -
使用Spread Operator 在构造对象时,进行克隆或者属性拷贝:
let objClone = {...obj};
查看全部 -
const student ={
name:'Ming',
age:'18',
city: 'Shanghai'
}
const {name,age,city} = student;
console.log(name); //Ming
查看全部 -
source面板
查看全部 -
const let 块作用域
ES7 includes() 指针操作符
ES8 async/await
查看全部 -
不错查看全部
-
挺好的查看全部
-
开发环境搭建:
安装nodejs
安装react naitve 命令行工具(react native-cli)
用于开发的android studio 或者 xcode
查看全部 -
好久没有学习了,之前的都忘记了。
查看全部 -
createStackNavigator
#stackNavigatorConfig
查看全部 -
createStackNavigator
#routeConfigs
查看全部 -
createStackNavigator api
查看全部 -
stackActions
查看全部 -
通过dispatch发送一个action
查看全部
举报