codecamp

nuxt.renderAndGetWindow

nuxt.renderAndGetWindow(url, options = {})

  • 类型: Function
  • 参数: StringString: 待渲染的 URL 路径可选, Object: optionsvirtualConsole: Boolean (默认值:true)
  • 返回值: PromisePromise 最终返回的值: window
渲染指定url并获取对应的window对象。

这个方法只用于 测试目的

要使用这个方法,需要先安装 jsdom:

npm install --save-dev jsdom

例如:

const Nuxt = require('nuxt')
const nuxt = new Nuxt()

nuxt.renderAndGetWindow('http://localhost:3000')
  .then((window) => {
  // 显示文档标题
    console.log(window.document.title)
  })


nuxt.renderRoute
Nuxt 内部
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定