React-Native 错误锦囊

1.View was rendered with explicitly set width/height but with a 0 flexBasis. (This might be fixed by changing flex: to flexGrow:)
一般是style样式问题,可能是flex值没有设定,检查样式
2.安装第三方依赖库错误 Error: EPERM: operation not permitted, rename: 执行npm install

  1. [SyntaxError: JSON Parse error: Unrecognized token '<']
    json数据解析问题,一般是服务器返回了一个HTML数据,无法解析导致出错。

你可能感兴趣的:(React-Native 错误锦囊)