使用视图中选择的 openid_identifier 填充模型参数?
我一直在按照教程
一切正常,但 openid_identifier 是从请求中读取的,就像 Request.Form["openid_identifier"]
一样,我想将选定的 openid_identifier 添加到视图模型中并将其设置为那里(这样我可以将其他东西添加到视图模型中,或者这样我可以更轻松地测试控制器)。
我可以这样做吗?如何?
I have been using openid selector to implement openid login on a web site following the tutorial here.
It all works ok but the openid_identifier is read in the controller from the request like so Request.Form["openid_identifier"]
and I wanted to instead add the selected openid_identifier to the view model and have it set in there instead (so I can add other things to the view model or so I can test the controller more easily).
Can I do this? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
改变
为
你做吗?
Does changing
to
do it for you?