2017-06-05 10 views
0

イメージをロードできません。 私のInfo.plist>イメージをロードできませんHTTP

<key>NSAppTransportSecurity</key> 
<dict> 
    <key>NSExceptionDomains</key> 
    <dict> 
     <key>localhost</key> 
     <dict> 
      <key>NSExceptionAllowsInsecureHTTPLoads</key> 
      <true/> 
     </dict> 
    </dict> 
</dict> 

私のコード>

 <View style={{flex: 1, flexDirection: 'row'}}> 
     <Image 
     source={{uri: 'http://ro-character-simulator.ratemyserver.net/charsim.php?gender=1&job=40&hair=1&viewid=0&location=256&direction=0&action=1&hdye=1&dye=0&framenum=0&bg=0&cart=&mount=0&shield=0&weapon=0&animate=1&rand=9725591', width: 50, height: 50}}/> 
     </View> 

答えて

0

フォームのXcodeの設定を許可する必要があります。 enter image description here

+0

ありがとうございました! ]] –

+0

ようこそ。 :) –

0

私はあなたが1つの以上のキーが必要だと思うあなたのInfo.plist

<key>NSAppTransportSecurity</key> 
    <dict> 
     <key>NSAllowsArbitraryLoads</key> 
     <true/> 
     <key>NSExceptionDomains</key> 
     <dict> 
      <key>localhost</key> 
      <dict> 
       <key>NSExceptionAllowsInsecureHTTPLoads</key> 
       <true/> 
      </dict> 
     </dict> 
    </dict> 
関連する問題