asp.net mvc 我什么时候应该读取 servervariables?
我什么时候可以从服务器变量收集信息(代码的一部分)? 我的意思是,我尝试
string temp = Request.ServerVariables.Get("HTTP_REMOTE_USER");
在控制器构造函数中调用它,但我得到一个空指针异常,而在一个操作中它工作正常。 在每个动作中调用它似乎不太干净。
When is the apropriate time (part of code) that i can gather information from servervariables? I mean, i have tried calling this
string temp = Request.ServerVariables.Get("HTTP_REMOTE_USER");
in the Controller constructor, but i am getting a nullpointerexception, while in an action it works properly. And it just doesnt seem very clean to call it in each action..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在控制器或基本控制器中定义一个属性:
然后在操作中调用此属性而不是 Request.ServerVariables.Get
You could define a property in your controller or Base Controller:
And then call this property in your actions instead of Request.ServerVariables.Get
Request.ServerVariables.Get("HTTP_REMOTE_USER") 不会立即在 .net core mvc 中提供帮助。 例如,您应该读取服务器变量:
另请参阅: 在 ASP.NET Core 中访问 HttpContext
Request.ServerVariables.Get("HTTP_REMOTE_USER") won't help in .net core mvc straight away. You should read server variables when for example:
See also: Access HttpContext in ASP.NET Core