我正在实现一个 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;博士
如何获取已传递到HttpModelStateWrapper
ctorFriendsController
中的 ModelState 对象,其更改反映在 的 ModelState 对象中FriendsController
?