这是我的第一个ASP.NET项目,我想轻松登录。 我试过这个:Link
但是我无法理解基本的东西:
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)不应该像“凭证”或“用户名+ PW”这样的东西而不是LogOnModel吗?