Jafeney 2016-11-18 692270687@qq.com
"dependencies": {
"react-native-modalbox": "^1.3.8",
"react-native-wechat": "^1.7.0"
}async和await是ES7比较新的提案,让ReactNative完全支持stage-0,首先我们需要安装 babel-preset-react-native-stage-0 模块:
npm install babel-preset-react-native-stage-0 --save-dev并设置 .babelrc
{
"presets": [ "react-native-stage-0" ],
}