Taro+react开发(64):数组对象的处理

Posted 前端小歌谣

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Taro+react开发(64):数组对象的处理相关的知识,希望对你有一定的参考价值。

<View>
        {data.map((item, index) => (
          <View style={{ display: index === num ? "block" : "none" }}>
            <View className="onlineQuetion_header">
              <Text className="onlineQuetion_header_text">{item.title}</Text>
            </View>
            {item.answers.map((itemList, index) => (
              <View className="onlineQuetion_header">
                <View className="onlineQuetion_footor">
                  <Text
                    className="onlineQuetion_footor_text"
                    onClick={() => {
                      this.answersQus();
                    }}
                  >
                    {itemList.content}
                  </Text>
                </View>
              </View>
            ))}
          </View>
        ))}
      </View>

以上是关于Taro+react开发(64):数组对象的处理的主要内容,如果未能解决你的问题,请参考以下文章

Taro+react开发(59) 注意image位置

Taro+react开发(92):taro中的事件处理

Taro+react开发(92):taro中的事件处理

Taro+react开发(31)同样的数据可以数组遍历

Taro+react开发(67):数组中push返回的是长度

Taro+react开发(67):数组中push返回的是长度