文本区域deafultValue无法正常反应

时间:2015-08-07 11:16:29

标签: reactjs ios-simulator react-native

我正在尝试编辑从数据库中检索到的文档。

"默认值" (例如"名字,姓氏和#34;)文本区域和文本输入不在react-native中工作。

以下是代码:

<TextInput
                                    placeholder="Comment  Here"
                                    blurOnSubmit={false}
                                    returnKeyType={"go"}
                                    style={styles.textInput}
                                    multiline={true}
                                    numberOfLines={20}
                                    underlineColorAndroid={"transparent"}
                                    autoCapitalize={"none"}
                                    autoCorrect={false}
                                    onChangeText={this.handleChange.bind(
                                        this,
                                        "comment"
                                    )}
                                    ref={input => {
                                        this.inputs["four"] = input;
                                    }}
                                    onSubmitEditing={() => {
                                        this.submitOurView_Method();
                                    }}
                                    value={this.state.contactInfo_View.comment}
                                />
textInput: {
        borderRadius: 5,
        borderWidth: 1,
        height: Platform.OS === "ios" ? 60 : 80,
        fontSize: 16,
        paddingHorizontal: 10,
        marginHorizontal: 15,
        padding: 10,
        marginTop: 8
    }

这是一个已知问题吗?目前有没有解决方法?

0 个答案:

没有答案