使用视图中选择的 openid_identifier 填充模型参数?

发布于 2024-11-04 22:10:25 字数 211 浏览 1 评论 0原文

我一直在按照教程

一切正常,但 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱,才寂寞 2024-11-11 22:10:25

改变

public ActionResult Authenticate(string returnUrl)  

public ActionResult Authenticate(String returnUrl, String openid_identifier)

你做吗?

Does changing

public ActionResult Authenticate(string returnUrl)  

to

public ActionResult Authenticate(String returnUrl, String openid_identifier)

do it for you?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文