在单个路由/页面上多次呼叫服务器的Nuxt / Vue错误?

时间:2017-08-31 10:18:48

标签: node.js express vue.js nuxt.js

为什么Nuxt在单一路由/页面上呼叫服务器多次

以下是我从express-template测试的示例:

import express from 'express'
import { Nuxt, Builder } from 'nuxt'

import api from './api'

const app = express()
const host = process.env.HOST || '127.0.0.1'
const port = process.env.PORT || 3000

app.set('port', port)

app.use(function(req, res, next) {
  console.log(res.headersSent) // <-- pay attention here
  next()
})

// Import API Routes
app.use('/api', api)

// Import and Set Nuxt.js options
let config = require('../nuxt.config.js')
config.dev = !(process.env.NODE_ENV === 'production')

// Init Nuxt.js
const nuxt = new Nuxt(config)

// Build only in dev mode
if (config.dev) {
  const builder = new Builder(nuxt)
  builder.build()
}

// Give nuxt middleware to express
app.use(nuxt.render)

// Listen the server
app.listen(port, host)
console.log('Server listening on ' + host + ':' + port) // eslint-disable-line no-console

route/page/index.vue会调用api/users

import axios from '~/plugins/axios'

export default {
  async asyncData () {
    let { data } = await axios.get('/api/users')
    return { users: data }
  },
  head () {
    return {
      title: 'Users'
    }
  }
}

我在plugins/axios.js中添加了console.log

import * as axios from 'axios'

let options = {}
// The server-side needs a full url to works
if (process.server) {
  options.baseURL = `http://${process.env.HOST || 'localhost'}:${process.env.PORT || 3000}`
  console.log('express:' + options.baseURL)
}

export default axios.create(options)

当我运行应用程序并在我的浏览器上http://127.0.0.1:3000/访问它时:

在我的终端,我得到:

false
express:http://localhost:3000
false 
false
false
false
false
false
false
false

正如您所看到的那样,在第一次电话之后,它已经调用api/users 8次更多

Nuxt中的错误是什么?

如果我从server/index.js移除app.use(nuxt.render)

// Give nuxt middleware to express
// app.use(nuxt.render)

我在http://127.0.0.1:3000/http://127.0.0.1:3000/api/users访问它,我得到:

false

只需一次调用即可。

那么,Nuxt会发生什么?

1 个答案:

答案 0 :(得分:2)

这不是一个错误。 Express正在执行您的中间件。在这种情况下,它们是对app.jslogo.png等客户端资产的http请求。更改您的中间件代码,如下所示,并检查控制台。

app.use(function(req, res, next) {
   console.log(req.url) // Change this line
   next()
})