React Native(JSX)字符串替换

时间:2016-01-21 01:09:05

标签: react-native react-jsx

是否可以修改JSX中的字符串?例如,我想搜索并替换图片网址中的字符串。

  renderMovie: function(movie) {
    return (
      <View style={styles.container}>
        <Image
          source={{uri: movie.posters.thumbnail}}
          style={styles.thumbnail}
        />
        <View style={styles.rightContainer}>
          <Text style={styles.title}>{movie.title}</Text>
          <Text style={styles.year}>{movie.year}</Text>
        </View>
      </View>
    );

我想在这里修改网址(代码取自https://facebook.github.io/react-native/docs/tutorial.html#content

movie.posters.thumbnail

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,并使用react-string-replace

解决了
npm i react-string-replace

我提供了一种简单的方法来安全地用React组件替换字符串。