这是我的第一个 ASP.NET 项目,我想轻松登录。我试过这个:链接
但我无法理解基本的东西:
public class AccountController : ApiController
{
public bool Post(LogOnModel model)
{
if (model.Username == "john" && model.Password == "secret")
{
FormsAuthentication.SetAuthCookie(model.Username, false);
return true;
}
return false;
}
}
1)如何编写对该控制器的正确调用?
2)不应该像“凭证”或“用户名+密码”这样的东西而不是LogOnModel吗?