こんにちはASP.net MVC Webサイトで働いているうちに、私は奇妙な問題に遭遇しました。 私はこのビュー名にGETアクションパラメータ値を使用するASP.NET MVCはなぜですか?
//
// POST: /Account/Register
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Register(RegisterViewModel model)
{
if (ModelState.IsValid)
{
var user = new ApplicationUser { UserName = model.UserName, Email = model.Email };
var result = await UserManager.CreateAsync(user, model.Password);
if (result.Succeeded)
{
//await SignInManager.SignInAsync(user, isPersistent:false, rememberBrowser:false);
return RedirectToAction("ConfirmEmailAwait", "Account", new { userId = user.Id }); //<-----[LOOK HERE]
}
AddErrors(result);
}
// If we got this far, something failed, redisplay form
return View(model);
}
//
// GET: /Account/ConfirmEmailAwait?userId=d178b665-b616-4303-ae7d-00a663014109
[AllowAnonymous]
public async Task<ActionResult> ConfirmEmailAwait(string userId)
{
// For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771
// Send an email with this link
string code = await UserManager.GenerateEmailConfirmationTokenAsync(userId);
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = userId, code = code }, protocol: Request.Url.Scheme);
string emailHeader = "Confirm your account";
string emailBody = "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>";
await UserManager.SendEmailAsync(userId, emailHeader, emailBody);
return View(userId);
}
のように私の知る限り、このコードは、行うことになっているものありません見ることができるように、それがユーザーに送信しなかった私が得る値を追加したいコントローラ内の別のアクションにリダイレクトしますが正しいURLなので、うまくいくはずです。しかし、あなたはここで、この画像を見れば:
構築URL:http://localhost:55767/Account/ConfirmEmailAwait?userId=d178b665-b616-4303-ae7d-00a663014109
エラーメッセージ:ビュー 'd178b665-b616-4303-ae7d-00a663014109' またはそのマスターが見つかりませんでしたか表示された場所をサポートするビューエンジンはありません。
検索するビューは、私が非常に奇妙なものを与えた取得値です。
何が起こっているのか分かりませんか?私は愚かな間違いをしていて、それを見ていないのですか?私を助けて、事前に感謝してください。
あなたはビューにリダイレクトしません。アクションにリダイレクトします。 – mason
答えが追加できるように、両方のコントローラメソッドのコードを表示する必要があります(画像へのリンクではありません) –
@masonああ、ありがとう、私は今修正しました – TheRWS96