设置图像参数时出错

时间:2018-03-12 15:59:27

标签: react-native

{this.state.items.map((item) => (
  <View style={{height:10, padding:10}}>
    <Image
      style={{flex:1, width: null, height: null, borderRadius:10}}
      source={require(`${item.imagem}`)}
    />
  </View>
  )
)}

我无法设置来源&gt;要求&gt;使用数据图的参数

  

捆绑失败:错误:对require的调用只需要1个字符串文字参数,但是找到了这个参数:require("" + item.codigo)

1 个答案:

答案 0 :(得分:1)

这是不可能的。

你应该生成一个庞大的switch-case语句来要求你想要的东西或者使用一个babel插件

您可以在此处查看更多详细信息: