如何将ActionResult从ClassLibrary项目发送到另一个项目?

时间:2015-10-24 11:35:23

标签: c# asp.net-mvc asp.net-identity actionresult

我将Identity类和AccountController移动到一个新的ClassLibrary中,一切都很好,除了两件事。我注意到的第一件事就是在调用Register方法时我收到了这个警告 Warning Message

这里是警告显示的代码,它现在是空的,因为我只是想确保我可以访问Register方法,它确实到达AccountController类中的Register方法。

public void CreateNewAdministrator(NewAdministrator administrator)
    {
        #region Initialization

        RegisterViewModel rvm = new RegisterViewModel();

        #endregion

        AccountController.Register(rvm);
    }

我要遇到的第二个问题是Register Method本身,这里是Register方法

public async Task<ActionResult> Register(RegisterViewModel model)
    {
        if (ModelState.IsValid)
        {
            var user = new ApplicationUser { UserName = model.Email, Email = model.Email, AccountNumber = model.AccountNumber };
            var result = await UserManager.CreateAsync(user, model.Password);
            if (result.Succeeded)
            {
                await SignInManager.SignInAsync(user, isPersistent: false, rememberBrowser: false);

                // 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(user.Id);
                // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");

                return RedirectToAction("Index", "Home");
            }
            AddErrors(result);
        }

        // If we got this far, something failed, redisplay form
        return View(model);
    }

我预见到的问题是

  

返回RedirectToAction(“Index”,“Home”);

我需要这个返回到MainProject区域中的视图,另一个是如果我可以让它从被调用的地方调用视图,我不希望它导致刷新视图。我使用JQuery Ajax调用此方法,因此在添加新记录时页面不会刷新。

我知道我将遇到另一个问题,但这可能是另一个问题。

1 个答案:

答案 0 :(得分:0)

如警告所示,您需要await AccountController.Register(rvm);

执行此操作以便在Register方法完成之前当前方法不会继续执行,这也可能会解决您的第二个问题,因为这可能是由此问题引起的。

另外,请提供您收到的所有警告,错误和/或例外的完整明文。