这是Sara Vieira的Opinionated Guide to React。在这个例子中,她正在做这样的事情:
export async function getServerSideProps({ req }) {
const ip = req.headers['x-real-ip']
console.log(req.headers)
const { data } = await axios(`http://ip-api.com/json/${ip}`)
return {
props: {
location: data,
},
}
}
我的控制台日志的标题是:
{
host: 'localhost:3000',
connection: 'keep-alive',
'cache-control': 'max-age=0',
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/86.0.4240.111 Safari/537.36',
accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'sec-fetch-site': 'same-origin',
'sec-fetch-mode': 'navigate',
'sec-fetch-dest': 'document',
referer: 'http://localhost:3000/',
'accept-encoding': 'gzip, deflate, br',
'accept-language': 'en-US,en;q=0.9,fr;q=0.8,ru;q=0.7,it;q=0.6'
}
没有x-
报头通过。我想这是因为我运行dev
根据https://github.com/vercel/next.js/issues/7377,由于SSR,x-
标头只能在_app.js
或_document.js
中访问。
你能帮忙吗!
1条答案
按热度按时间h9vpoimq1#
你可以试试这样: