react native 路徑對,但讀取圖片錯誤問題

spfLinux發表於2018-01-30
import React,{Component} from 'react';
import {Image,View} from 'react-native';

export default class Demo03Component extends Component{
    constructor(){
        super();
        this.state={
            imgUrl:'http://176.51.6.120:80/ajia_code/img/404/404_img1.png'
        }
    }

    render(){
        return <View>
            <Image style={{width:50,height:50}} source={require('../../../img/1.jpg')}></Image>
            <Image style={{width:50,height:50}} source={{uri:"http://176.51.6.120:80/ajia_code/img/404/404_img1.png"}}></Image>
        </View>
    }
}
後來才發現圖片字尾名都為小寫才對,也就是圖片真實字尾和程式碼都是.jpg才對。

相關文章