React Native 个推安卓引用依赖项失败 ERROR: Unable to resolve dependency for

问题公司的 React Native 的项目以前集成了 react-native-getui 个推推送,后来升级到了 1.1.35 版本,个推模块的build.gradle如下:dependenci...
2020-02-18 React Native 评论 0

react native更改默认端口8081,配置多端口

我们在本地开发react native项目时候,通常会先运行:npm start 或者 yarn start。此命令将启动8081端口,用于提供JSBundle包和一些静态资源。有时候8081被占用,...
2019-12-24 React Native 评论 0

react-native-fast-image 由于source的uri非法而奔溃

react-native 的 Image 组件加载性能低,未能很好地实现缓存,存在加载闪烁的问题。react-native-fast-image是一个native库,可以解决这些问题,是 Image ...
2019-12-18 React Native 评论 0
MIP.watch('startSearch', function (newVal, oldVal) { if(newVal) { var keyword = MIP.getData('keyword'); console.log(keyword); // 替换当前历史记录,新增 MIP.viewer.open('/s/' + keyword, {replace: true}); setTimeout(function () { MIP.setData({startSearch: false}) }, 1000); } }); MIP.watch('goHome', function (newVal, oldVal) { MIP.viewer.open('/', {replace: false}); });