作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我真的认为这应该很容易。但是当我渲染一个 Jade 模板的时候,我也想抓取ip地址。我的代码看起来像这样。
应用程序.js
app.get('/', index.home)
exports.home = function(req, res) {
res.render('index');
};
var ip = req.header('x-forwarded-for') || req.connection.remoteAddress; //or
console.log(req.connection.remoteAddress);
最佳答案
只需使用 req.ip
并确保您有 app.enable('trust proxy');
如果您的应用程序部署在反向代理之后。 Express 为您准备了所有的 header 解析和代理逻辑。
关于view - Express.js : How can I get the ip Address and render a view?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25192216/
我是一名优秀的程序员,十分优秀!