构建Next.js应用后,无法从getInitialProps访问查询字符串

时间:2019-06-24 08:04:08

标签: next.js

构建应用后,我尚未从getInitialProps访问查询字符串。

想象一下这个URL:http://example.com/articles?page=2

在客户端,我可以使用getInitialProps()参数访问“查询”中的“页面”参数。但是此参数在构建和发布应用程序后不可用。

static async getInitialProps({ query, res, req }) {
  let page = query.page; // it's null on published app
  let url = req.url; // it's http://example.com/articles on published app
}

0 个答案:

没有答案