以下是我在开发过程中遇到的一些问题以及解决方法总结:
欢迎大家加入RN讨论群,一起填坑:670055368
1、升级Xcode11, React Native启动报错的问题!
Exception '*** -[__NSArrayM objectAtIndexedSubscript:]: index 1 beyond bounds [0 .. 0]' was thrown while invoking getCurrentAppState on target AppState with params
[RCTModuleMethod.mm:376] Unknown argument type '__attribute__' in method -[RCTLinkingManager getInitialURL:reject:]. Extend RCTConvert to support this type.
解决办法:
找到这个文件
并将其中的代码修改成:
static BOOL RCTParseUnused(const char **input)
{
return RCTReadString(input, "__attribute__((unused))") ||
RCTReadString(input, "__attribute__((__unused__))") ||
RCTReadString(input, "__unused");
}
2、Warning: isMounted(...) is deprecated in plain Javascript Classes. Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.
github上issue : https://github.com/react-navigation/react-navigation/issues/3956,这里的issue说的很明白了,这个问题不是组件本身的问题是React Native 的bug.可查看rn的issue里面存在此问题.目前解决办法就是忽略警告:
import { YellowBox } from 'react-native';
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']);
3、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.Please check the code for the xxx component.
这个警告的意思就是我们是在对一个没有加载的组件上执行了setState({})操作,通常是在刚进页面还没有加载完或者离开页面以后,组件已经被卸载,这样执行setState时无法找到渲染组件。避免这样类似的操作,就能解决此类的警告,具体可参考此处解决方案。
4、RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks
参考:解决方案
第一步:修改AppDelegate.m文件
#if RCT_DEV
#import <React/RCTDevLoadingView.h>
#endif
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
...
RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:jsCodeLocation
moduleProvider:nil
launchOptions:launchOptions];
#if RCT_DEV
[bridge moduleForClass:[RCTDevLoadingView class]];
#endif
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"<AddYourAppNameHere>"
initialProperties:nil];
...
}
如果修改完不起作用,请重装APP(* ̄︶ ̄)
5、Xcode10编译 Build input file cannot be found: '/Users/xxx/.../node_modules/react-native/Libraries/WebSocket/libfishhook.a'
遇到这个问题,可以在图中位置,找到最后一步,先删除,然后在重新添加一下就可以了。
5、 'config.h' file not found Xcode运行,如图所示
解决办法:
打开命令行,执行如下操作:
1、cd node_modules/react-native/third-party/glog-0.3.4
2、../../scripts/ios-configure-glog.sh
3、Clean项目,重新编译,解决!
6、RN中发生点击事件或者页面显示的时候,Debug模式下正常,但是在Release模式下,出现卡死或者卡住很长时间的情况。
一般原因:查看是否console.log(),有的话,看是否在打印类似props,navigate等层级多的内容,这种打印在Release模式下是会卡死的。
7、react-native-render-html iOS端图片模糊问题。
当iOS端的图片尺寸较大时候,有时候会导致显示的图片模糊。原因应该是图片加载之前给了一个props.imagesInitialDimensions微小尺寸(默认为100x100)渲染图像,知道实际尺寸后,图像会被拉伸。解决方法,对源码做一下修改。
10c10,11
< height: props.imagesInitialDimensions.height
---修改为
> height: props.imagesInitialDimensions.height,
> indeterminate: (!props.style || !props.style.width || !props.style.height)
80c81,82
< height: typeof styleHeight === 'string' && styleHeight.search('%') !== -1 ? styleHeight : parseInt(styleHeight, 10)
---修改为
> height: typeof styleHeight === 'string' && styleHeight.search('%') !== -1 ? styleHeight : parseInt(styleHeight, 10),
> indeterminate: false
92c94
< this.setState({ width: optimalWidth, height: optimalHeight, error: false });
---修改为
> this.setState({ width: optimalWidth, height: optimalHeight, indeterminate: false, error: false });
117a120,125
---新增
> get placeholderImage () {
> return (
> <View style={{width: this.props.imagesInitialDimensions.width, height: this.props.imagesInitialDimensions.height}} />
> );
> }
>
120,121c128,134
<
< return !this.state.error ? this.validImage(source, style, passProps) : this.errorImage;
------修改为
> if (this.state.error) {
> return this.errorImage;
> }
> if (this.state.indeterminate) {
> return this.placeholderImage;
> }
> return this.validImage(source, style, passProps);
8、报错:Error: Cannot find module 'asap/raw'。
新建项目,可能出现这种错误,只需要重新执行一下:npm install 即可!
9、android打包apk错误:Could not list contents of '/Users/xxxx/Downloads/xxxx/node_modules/node-pre-gyp/node_modules/.bin/needle'. Couldn't follow symbolic link.
解决办法:
打开命令行,执行如下操作:
1、defaults write com.apple.finder AppleShowAllFiles -bool true 命令打开Mac的隐藏文件。
2、根据以上的报错路径查找node-pre-gyp,把其中的nopt、needle、detct-libc、rc删掉就行了。
3、defaults write com.apple.finder AppleShowAllFiles -bool false 命令隐藏Mac的隐藏文件。
10、奇葩现象:当我们修改完代码后,command+R刷新模拟器,页面是刷新了,可以新改的代码并没有同步,于是进行了清缓存、重启电脑等等一系列操作,还是无效!
解决办法:
打开命令行,执行如下操作:
1、defaults write com.apple.finder AppleShowAllFiles -bool true 命令打开Mac的隐藏文件。
2、在项目目录下找到.git/index.lock文件,删掉,OK,大功告成!
3、defaults write com.apple.finder AppleShowAllFiles -bool false 命令隐藏Mac的隐藏文件。