
react
水色陀螺
这个作者很懒,什么都没留下…
展开
-
React Native 初试
公司让用RN开发内部的经销商应用,把网站(vue开发)的在做一个移动版,因此,开始了RN的挖坑填坑之路…所用的package.json{ "name": "dealerTest", "version": "0.0.1", "private": true, "scripts": { "start": "node node_modules/react-na原创 2017-12-15 15:56:31 · 423 阅读 · 0 评论 -
今天项目运行时报了这么个鬼
错误内容: Attempted to transition from state RESPONDER_INACTIVE_PRESS_IN to RESPONDER_ACTIVE_LONG_PRESS_IN, which is not supported. This is most likely due to Touchable.longPressDelayTimeout not being ca原创 2017-12-22 12:40:33 · 2037 阅读 · 3 评论 -
组件卸载的重要性
今天报了这个, index.bundle:6990 Warning: Can only update a mounted or mounting component. This usually means you called setState, replaceState, or forceUpdate on an unmounted component. This is a no-op.原创 2017-12-28 12:08:53 · 1469 阅读 · 1 评论 -
RN今天遇到的新坑:debug可以,生成的apk运行关闭
RN今天遇到的新坑:debug可以,生成的apk,真机一运行就关闭! 虚拟机报如下错误: “很抱歉,XXX已停止运行” 2018-01-17 React Native 0.52.0 解决了以上BUG,可以完美运行,并且优化了很多东西! 2017-12-28 今天看了下React Native官网,果然是有了新的版本,新版本0.51 我的能正常发布apk并运行原创 2017-12-28 02:20:30 · 1551 阅读 · 0 评论 -
RN的样式名列表
好吧,我承认我没把所有RN的样式名全记在脑子里,在此记录一下,用到找不到的时候可以过来看看 "alignItems", "alignSelf", "backfaceVisibility", "backgroundColor", "borderBottomColor", "borderBottomLeftRadius", "borderBottomRightRadius", "borderBottom原创 2018-01-10 17:41:20 · 947 阅读 · 0 评论 -
React-Nativgation的goBack()坑
Nativgation 的返回 goBack可带参数的修改如下,StackRouter.js文件内的NavigationActions.Back内容修改如下: const key = action.key; let backRouteIndex = null ; if (key) { let backRoute ; if(key.indexOf('id') >= 0...原创 2018-02-27 11:24:25 · 1328 阅读 · 0 评论