一、react-native报错: Warning:In next release empty section headers will be rendered 【ListView】
解决方案:在ListView下 加个 enableEmptySections = {true} 就可以解决了
二、React.createElement: type should not be null, undefined, boolean, or number. It should be a string (for DOM elements) or a ReactClass (for composite components). Check the render method of `Navigator`.
解决方案:这种问题一般是出现undefined 或者 null 的时候,我出现这个问题就是因为出现undefined类型,如下:
修改成完它应该的值就可以了
三、React.Children.only expected to receive a single React element child.
解决方案:
TouchableWithoutFeedback只能包含一个子节点,改成如下就可以了:
四、JSON value ... of type NSMutableDictionary cannot be converted to NSString
解决方案:一般是数据格式问题,Aert.alert 的第二个参数应该是字符串,却传了个JSON
data:{title:"姓名",value:"Qqq"}
--------未完待续---------