react-native 报错:node is not atta
2017-07-28 本文已影响0人
挪威森林_29e6
react-native 报错:node is not attached to a parent: 116
错误原因:引入组件时多了大括号
解决办法:
将
import {JobCell} from '../components/jobList/JobCell'
改为
import JobCell from '../components/jobList/JobCell'