ReactJs函数调用,而是看到一个表达式no-unused-expressions

问题描述 投票:1回答:2

我正在尝试在reactjs准备一个restfulpi。但是因为我刚开始反应并且我的英语不是很流利,所以我遇到了一个问题。我的申请的目的是列出出版商的书籍。您可以从下面访问我的代码和错误。如果你帮助我,我可以做到。谢谢。

错误:

第21行:预期赋值或函数调用,而是看到表达式no-unused-expressions

我的代码:

`` ` 
class App extends Component {
  state = {
    books:[]
  }
  componentWillMount(){
    axios.get('http://localhost:3000/books').then(( response)=>{
    this.setState({
      books: response.data
    })
    });
  }``

`` ` 
render() {
    let books = this.state.books.map((book) =>
    {
      return
      (
        <tr key={book.id}>
          <td>{book.id}</td>
          <td>{book.title}</td>
          <td>{book.rating}</td>
          <td>
            <Button color="success" size="sm" className="mr-2">Edit </Button>&nbsp;
            <Button color="danger" size="sm">Sil</Button>
          </td>
      </tr>
      )
    });``

`` ` 
 return (
  <div className="App container">
  <h1>Book List</h1><br></br>
  <Table> 
    <thead>
      <tr>
        <th>#</th>
        <th>Title</th>
        <th>Rating</th>
        <th>Actions</th>

      </tr>
    </thead>
    <tbody>
      {books}
    </tbody>
  </Table>

  </div>
);``
javascript reactjs frontend
2个回答
1
投票

试试这个:

render() {
  const books = this.state.books.map(book => {
    return (
      <tr key={book.id}>
        <td>{book.id}</td>
        <td>{book.title}</td>
        <td>{book.rating}</td>
        <td>
          <Button color="success" size="sm" className="mr-2">
            Edit{' '}
          </Button>
          &nbsp;
          <Button color="danger" size="sm">
            Sil
          </Button>
        </td>
      </tr>
    );
  });

  return <tbody>{books}</tbody>;
}

根据this answer,它是渲染函数中的常见错误。


1
投票

您在return方法中缺少render语句。

render() {
     ....
     ...

   return (
      <tbody>
        {books}
      </tbody>
   )
}
© www.soinside.com 2019 - 2024. All rights reserved.