很久没用RN了之前用的时候还是很早的版本,现在有了很大的变化,感觉比之前成熟了很多重新看下.先整下导航 参考地址:https://reactnavigation.org/docs/en/getting-started.htmlyarn add react-navigationyarn add react-native-gesture-handler react-native-reanimated 报这个错查了半天,最终 cd ios pod install 但是奇怪的是之前运行过,再次运行ios…
程序报错: null is not an object (evaluating 'rngesturehandlermodule.default.direction') 解决: react-native run-android 尝试各种方式无解,受此文章启发,重新生成下好了 分析: 可能是因为生成后,安装的 react-native-gesture-handler ,虽然link后,start成功运行,但还需要重新生成下debug-apk才行…
前言 现在的Xcode最新版本都是在10.1,原先使用的版本是9.4.1!结果今天手贱将其升级... 然后,跑IOS自动化时,出现“Xcode version '0.1'. Support for Xcode 0.1 is not supported.”的报错 环境信息: Python:3.7 Appium:1.8.1 Xcode:10.1 遇到的问题 启动Appium时,Appium报“Error: Xcode version '0.1'. Support for Xcode 0.1 is n…
django2.0+连接mysql数据库迁移时候报错 情况一 错误信息 django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3. 解决办法 去到\python\lib\site-packages\django\db\backends\mysql\base.py" 把里面的注释掉 # if version < (1, 3, 13): # raise…
背景说明 执行<Elasticsearch 权威指南>的示例,在执行聚合查询的时候,报错 Fielddata is disabled on text fields by default. 1)聚合语句如下: GET _search { "aggs": { "all_interests": { "terms": { "field": "interests"} } } } 2)报错信息如下: { &…
报错No active profile set, falling back to default profiles pom.xml加上下面两个依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <gr…
五一佳节匆匆而过,有人选择在外面看人山人海,有人选择宅在家中度过五一,也有人依然坚守在第一线,致敬! 这是坚持学习react-native的第二篇文章,可能会迟到,但是绝不会缺席,这篇要涉及到的是react-navigation,也是rn社区主推的一个导航库. 网上关于react-navigation的基本使用也是一抓一大把,这里对于它的使用不做过多介绍,主要记录使用过程中的其他问题. 因为android 和iOS 手机的不同,导航栏的显示也不太一样,而这篇文章会尽量的配置属性,让两端的导航栏样…
在学习React.js 或 React Native 过程中,有时看着别人的框架或代码,但总是会出现错误,因为React或之中用到的一些包经常更新,有些代码或教程就显得过旧了. 一.日常报错 'config.h' file not found (每次RN新建一个工程都会出现) a. xcode 10.0 file => Project setting => Build Systed => Legacy Build Systed b. 再进行如下命令 cd node_modules/rea…
原文: https://feiffy.cc/uncaught-typeerror-cannot-convert-object-to-primitive-value 最近发现我的博客页面移动端上下拉菜单失效了,调试了一下,只要一点击下拉菜单就会报这个错误: 下拉菜单使用 bootstrap,部分代码如下: <button class="navbar-toggler" type="button" data-toggle="collapse" d…
刚开始上手RN,碰到很多坑,记录一下.碰到问题多去看看github上面的issue! 启动命令react-native run-ios报错 1.:xcrun: error: unable to find utility "instruments", not a developer tool or in PATH 解决方案 sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/ 重新跑一下就好了 2.bundlin…