构建应用后,我尚未从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
}