无法使用提取API显示数据-node.js

时间:2018-08-17 15:28:16

标签: node.js fetch es6-promise isomorphic-fetch-api

所以,我收到以下错误消息,

  

通过谷歌浏览器检查

enter image description here

我想要实现的目的是通过 userApi.js 文件检索一些数据来探索Fetch Api,该文件从 srcServer.js 中提取(我已经进行了硬编码一些数据)。我正在使用webpack捆绑包,索引是我的项目的切入点。我创建了 index.html 来通过innerhtml绑定数据。

我之前在userApi.js文件中使用import 'isomorphic-fetch',但这也无济于事,因此我在google上发现了一些建议,以使用同构获取,节点获取等。这种方法毫无用处。

我在下面添加了大多数工件,您能否指导我这里缺少的内容。

  

项目结构

enter image description here

  

userApi.js

import 'isomorphic-fetch'
import 'es6-promise'

export function getUsers () {
  return get('users')
}

function get (url) {
  return fetch(url).then(onSuccess, onError) //eslint-disable-line
}

function onSuccess (response) {
  return response.json()
}

function onError (error) {
  console.log(error)
}
  

index.js

/* eslint-disable */  // --> OFF

import './index.css'
import {getUsers} from './api/userApi'

// Populate table of users via API call.
getUsers().then(result => {
  let usersBody = ''

  result.forEach(element => {
    usersBody+= `<tr>
    <td><a href='#' data-id='${user.id}' class='deleteUser'>Delete</a></td>
    <td>${user.id}</td>
    <td>${user.firstName}</td>
    <td>${user.lastName}</td>
    </tr>` //eslint-disable-line
  })

  global.document.getElementById('users').innerHTML = usersBody
})
  

index.html

<!DOCTYPE <!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Page Title</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>
  <h1>Users</h1>
  <table>
    <thead>
      <th>&nbsp;</th>
      <th>Id</th>
      <th>First Name</th>
      <th>Last Name</th>
    </thead>
    <tbody id="users">

    </tbody>
  </table>
  <script src="bundle.js"></script>
</body>

</html>
  

srcServer.js

// sample api call data
app.get('/users', function (req, res) {
  // Hard coded for simplicity
  res.json([
    { 'id': 1, 'firstName': 'P', 'lastName': 'K' },
    { 'id': 2, 'firstName': 'M', 'lastName': 'K' },
    { 'id': 3, 'firstName': 'S', 'lastName': 'K' }
  ])
})

1 个答案:

答案 0 :(得分:1)

该错误为您提供了确切的原因,即user未定义。您是否尝试过在forEach循环中打印console.log(element);?您将看到需要更改的内容。

您错误地访问了用户信息。在您的forEach循环中,每个值都表示为element而不是user

result.forEach(element => {
    usersBody+= `<tr>
    <td><a href='#' data-id='${element.id}' class='deleteUser'>Delete</a></td>
    <td>${element.id}</td>
    <td>${element.firstName}</td>
    <td>${element.lastName}</td>
    </tr>` //eslint-disable-line
  })