1

以下是错误代码: Warning: Failed prop type: Invalid prop 'source' supplied to 'Image'.

const ParentComponent = () => {
 return (
  <Image source={require('app/assets/image.png')}/>
 );
}

name在 package.json 中将配置定义为app

我在运行笑话测试时收到此错误。

4

1 回答 1

-1

您需要提供照片的相对路径,例如:

  <Image source={require('../../assets/image.png')}/>

(取决于文件位置)

于 2021-01-16T18:58:44.160 回答