4

我在使用 Ember 和 Ember Data 处理服务器端验证时遇到问题。

当发生验证错误时,API 返回代码 422。Ember 数据然后触发becameInvalid模型上的回调。

从这里开始,我不确定处理我遇到的错误的最佳方法是什么,以及如何让它们冒泡到视图中。

App.Challenge = DS.Model.extend Ember.Validations,
    title: attr('string')
    summary: attr('string')
    # other attributes

    becameInvalid: (errors) ->
        # is it the place where I should handle the errors?
        # how would I make the errors bubble up to the view here?

我有2个问题。

  • 我不确定是否becameInvalid是处理错误的地方,如果是,如何使错误显示在视图中
  • becameInvalid@get('isValid')返回true,这对我来说没有意义。
4

1 回答 1

2

这是我应该处理错误的地方吗?

是的。但是您可能根本不需要做任何事情。Ember-data 期望您的 api 在其 json 响应中包含任何验证错误。该错误对象被传递给becameInvalid钩子并保存为errors模型上的属性。因此,如果您只想在视图中显示错误,那么执行以下操作可能就足够了:

{{input value=firstName}}<p class="inline-help">{{errors.firstName}}</p>

请参阅:https ://github.com/emberjs/data/blob/master/packages/ember-data/lib/serializers/rest_serializer.js#L50-L61

在 becomeInvalid 中,@get('isValid') 返回 true,这对我来说没有意义

同意这很奇怪。我认为这是一个绑定的事情,就像 becomeInvalid 挂钩在绑定更新之前运行。

于 2013-07-05T04:29:45.667 回答