代码之家  ›  专栏  ›  技术社区  ›  MJM

React Native:从方法中获取文本元素的值

  •  0
  • MJM  · 技术社区  · 6 年前

    <查看>{这个。\u getCategories(item)}</查看>

    \u getCategories方法在使用item参数检索正确的数据之后返回一个文本元素。简化版本如下所示:

    _getCategories = item => {
    names = 'some string';
          console.log(names); //this logs the correct string
          return <Text style={styles.categories}>{names}</Text>;  
    };
    

    Text元素不会出现在应用程序中,如果在View元素中使用{String(names)},则显示undefined。

    1 回复  |  直到 6 年前
        1
  •  1
  •   ehsan    6 年前

    两个都试过了 {String(names)} {names}