4

我正在使用 Hyperstack.org 框架,因此使用 Opal 编译的 Ruby 代码。Hyperstack 与 Rails 的集成在客户端创建了一些模型的表示,我对响应中的错误验证有疑问。

使用验证器保存模型时,当触发其中一个验证器时,我无法在承诺响应中获得完整的错误消息。

在这段代码中:

@User.save(validate: true).then do |result|
      if result[:success]
        puts 'successs'
        mutate @open = false
      else
        result[:models].each do |response_model|
          puts "response_model.errors.class = #{response_model.errors.class}" #ActiveModel::Errors
          puts "response_model.errors.full_messages = #{response_model.errors.full_messages}" #nothing puts
        end
      end

第一个 puts 返回#ActiveModel::Errors,但我似乎无法使用该模型的方法。

我可以看到这个测试:https://github.com/hyperstack-org/hyperstack/blob/a09bc601b3ad289c9f75156416ed39dff88059c9/ruby/hyper-model/spec/batch1/misc/errors_spec.rb#L340所以我希望这是工作,一定是我!

另外,我注意到对 promise 的 JSON 响应实际上包含错误消息:

{
  "success" => false, "saved_models" => [
    [227154, "User", {
      "id" => 48,
      "first_name" => "ds",
      "last_name" => nil,
      "email" => nil,
      "image_src" => nil,
      "date_of_birth" => nil,
      "is_admin" => false,
      "is_female" => false,
      "is_enabled" => true,
      "created_at" => "2019-03-23T12:29:05.728Z",
      "updated_at" => "2019-03-23T12:29:05.728Z"
    }, {
      "last_name" => ["can't be blank"]
    }]
  ], "message" => "HyperModel saving records failed!", "models" => [ < User: 0x37752(0x37750)[errors {
    "last_name" => ["can't be blank"]
  }] > ]
}

任何帮助表示赞赏!

4

1 回答 1

2

看起来您使用该full_messages方法在 HyperModel 中遇到了错误。AFAIK 所有其他方法在您的示例中都可以正常工作。

如果您查看https://github.com/hyperstack-org/hyperstack/issues/143,如果您确实需要,可以使用补丁解决方案full_messages

于 2019-03-23T22:18:41.370 回答