将参数图像传递到一个文件在手机上不起作用,但在 PC 上起作用

发布于 2025-01-09 05:39:01 字数 1782 浏览 0 评论 0原文

**我有 2 个文件,一个称为firstFile,另一个称为secondFile,我想在按下按钮时将图像从firstFile 渲染到secondFile 中。它可以在桌面上运行,但不能在手机上运行,​​而是向我显示开发服务器返回了响应错误代码:500 &&第 18 行无效调用:require(“../assets/img/” + image) ** 如果有人可以帮助我,那就太好了,谢谢

///. firstFile file



function firstFile() {
   const navigation = useNavigation(); // for navigation on press purpose.

  return (
    <SafeAreaView style={{ flex: 1 }}>
      <View style={{ flex: 1 }}>
          <View style={{ height: 150, marginTop: 10 }}>
            <ScrollView
              horizontal={true}
              showsHorizontalScrollIndicator={false}
            >
              <Pressable onPress={() => navigation.navigate("secondFile", {
                      image:"Tree-character_SVG.png",
                      text:"Get green\nelectricity",
              })}>
                <Category
                  imageUri={require("../assets/img/Tree-character_SVG.png")}
                  text="Get green\nelectricity"
                />
              </Pressable>
              
            </ScrollView>
          </View>
        </View>
      </View>
    </SafeAreaView>
  );
}

export default firstFile;

// secondFile file

export default function secondFile({route}) {
  const navigation = useNavigation(); // for navigation on press purpose.

 const { image, text} = route.params;
  
  return (
    <View style={styles.container}>
      <View style={styles.imageContainer}>
        <Image
          style={styles.image}
          source={require(`../assets/img/${image}`)}
        />
        <Text style={styles.imageText}>{text}</Text>
      </View>

    </View>
  );
}

**I have 2 files, one is called firstFile and other is secondFile, I want to render the image from firstFile into secondFile on press button. and it is working on the desktop but not working on phone instead it is showing me the development server returned response errror code : 500 && Invalid call at line 18: require(“../assets/img/” + image) **
if anybody can help me, it would be great relieve thank you

///. firstFile file



function firstFile() {
   const navigation = useNavigation(); // for navigation on press purpose.

  return (
    <SafeAreaView style={{ flex: 1 }}>
      <View style={{ flex: 1 }}>
          <View style={{ height: 150, marginTop: 10 }}>
            <ScrollView
              horizontal={true}
              showsHorizontalScrollIndicator={false}
            >
              <Pressable onPress={() => navigation.navigate("secondFile", {
                      image:"Tree-character_SVG.png",
                      text:"Get green\nelectricity",
              })}>
                <Category
                  imageUri={require("../assets/img/Tree-character_SVG.png")}
                  text="Get green\nelectricity"
                />
              </Pressable>
              
            </ScrollView>
          </View>
        </View>
      </View>
    </SafeAreaView>
  );
}

export default firstFile;

// secondFile file

export default function secondFile({route}) {
  const navigation = useNavigation(); // for navigation on press purpose.

 const { image, text} = route.params;
  
  return (
    <View style={styles.container}>
      <View style={styles.imageContainer}>
        <Image
          style={styles.image}
          source={require(`../assets/img/${image}`)}
        />
        <Text style={styles.imageText}>{text}</Text>
      </View>

    </View>
  );
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多像笑话 2025-01-16 05:39:02

你能试试这个代码吗?

<Image
   style={styles.image}
   source={image ? require(`../assets/img/${image}`) : undefined}
/>

could you try this code?

<Image
   style={styles.image}
   source={image ? require(`../assets/img/${image}`) : undefined}
/>
油焖大侠 2025-01-16 05:39:02

在 RN 中,你的 require 中不能有变量。

尝试在第一个文件 const image = require'//full require'

,然后通过 props 传递图像,然后你就可以直接使用 source={image}

You cant have variables in your require in RN.

Try in the first file const image = require'//full require'

and then pass image through props and then you can just go source={image}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文