0

我正在实现一个 MVC 解决方案,该解决方案具有一些用于各种数据查询的 Web API 端点。我正在使用本文中描述的技术将我的验证问题分离到服务层。

如果您想跳到具体问题,这篇文章最后有一个TL;DR 。

这是我的ApiController代码:

[Authorize]
public class FriendsController : ApiController
{
    private IItemService _service;

    public FriendsController()
    {
        _service = new ItemService(new HttpModelStateWrapper(ModelState), new ViewModelRepository());
    }

    public FriendsController(IItemService service)
    {
        _service = service;
    }

    // GET api/friends
    public IEnumerable<User> Get()
    {
        return _service.GetFriends(User.Identity.Name);
    }


 .
 .
 .

    // POST api/friends
    public void Post(Guid id)
    {
        var user = _service.AddFriend(User.Identity.Name, id);  // Handles error and should update ViewModel
        NotificationAsyncController.AddNotification(user);
    }
}

和代码_service.AddFriend(User.Identity.Name, id);看起来像这样:

    public User AddFriend(string userName, Guid id)
    {
        try
        {
            return _repository.AddFriend(userName, id);
        }
        catch (Exception e)
        {
            _validationDictionary.AddError("AddFriend", e.Message);
            return null;
        }
    }

_validationDictionary看起来像这样:

public class HttpModelStateWrapper : IValidationDictionary
{
    private ModelStateDictionary ModelState;

    public HttpModelStateWrapper(ModelStateDictionary ModelState)
    {
        this.ModelState = ModelState;
    }

    public void AddError(string key, string errorMessage)
    {
        if (ModelState != null)
            ModelState.AddModelError(key, errorMessage);
    }

    public bool IsValid
    {
        get { return ModelState == null ? false : ModelState.IsValid; }
    }
}

好吧,我发现如果_repository.AddFriend(userName, id);抛出错误并被_validationDictionary.AddError("AddFriend", e.Message);调用,则其中的 ModelState 对象_validationDictionary不会更新驻留在FriendsController.

也就是说,在AddError被调用之后, 中的 ModelStateHttpModelStateWrapper是无效的,但是一旦该方法返回并且范围返回到 中FriendsController,它的 ModelState 并没有更新,仍然是有效的!

TL;博士

如何获取已传递到HttpModelStateWrapperctorFriendsController中的 ModelState 对象,其更改反映在 的 ModelState 对象中FriendsController

4

1 回答 1

0

我最终只是传递了整个控制器,这让我可以访问 ModelState 对象

于 2012-10-02T16:35:43.460 回答