gpt4 book ai didi

react-native - Image React-native 不工作

转载 作者:行者123 更新时间:2023-12-02 09:18:45 25 4
gpt4 key购买 nike

我正在尝试这样做:

<Image
style={styles.image}
source={require(`./img/${params.image}.png`)}
/>

但返回此错误:“未知命名模块 enter image description here

最佳答案

我也遇到过这个问题,不能像这样调用图片

source={require(`./img/${params.image}.png`)}

你必须使用另一个变量来存储路径然后调用它(包括require)

例如:

let imagePath = require("../../assets/list.png");

另请注意 you can not call variable into require .

检查这个引用。网址:https://github.com/facebook/react-native/issues/2481

关于react-native - Image React-native 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44468500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com