不变违规:为li找到查看config



我很确定我在这里缺少一些基本的东西,但是我无法弄清楚。我一直在关注本教程以渲染元素列表,但是我得到了"未找到名称li"错误的"查看config"错误,以及我尝试在render()中使用的任何其他HTML元素。不确定我在哪里出错,因为所有其他类似的问题都有我已经包含在代码中的解决方案(例如包括返回语句),因此任何建议都将不胜感激。

import React, { Component } from 'react'; 
import ReactList from 'react-list';
import { StyleSheet, Text, View, Navigator, AppRegistry, TextInput, 
TouchableOpacity } from 'react-native';
const { createGame, addUserToGame } = require('./requestors');
class Players extends Component {
    constructor(props) {
    super(props);
    this.state = {
        players: [{
            name: 'Player1',
        }, {
            name: 'Player2',
        }],
    };
  }
  render() {
    return (
        <ul>
        {this.state.players.map(player => <li>{player.name}</li>)}
        </ul>
      );
  }
}
module.exports = Players;

您无法在React-native

中渲染HTML组件

相关内容

  • 没有找到相关文章

最新更新