2017-01-12 4 views
1

こんにちは私は私のアプリに問題があります。Jsonの値NSDitctionaryの変換

render() 
{ 
    console.log(this.state.ext); 
    var tmp = this.state.ext; 
    tmp = tmp.toString(); 
    console.log(tmp); 

    if (this.state.ext != ""){ 

return(
    <View style={styles.container}> 
    <Image source={require('../../img/mob.png')} style= {styles.mob_logo}/> 
    <WebView 
    source={{uri: {tmp}}} style={{marginTop: 20}} 
    /> 
    </View> 
) 
} 

私はJSON値タイプNSDictionaryのの

{ 
    tmp = "React Native New Date string""; 
} 

は、NSStringのに変換することはできません取得します。

答えて

0

yourDictionary ["tmp"]またはyourDITIONARY.Descriptionを使用して文字列に変換することができます

+0

私に説明することはできませんか? –

+0

辞書を取得すると、キーを使用して文字列またはオブジェクトを取得したり、辞書の説明を記録してその構造を表示することができます –

関連する問題