gpt4 book ai didi

ruby-on-rails - rails 中的数组字段消除了编辑时的重复元素

转载 作者:行者123 更新时间:2023-11-29 13:56:24 26 4
gpt4 key购买 nike

当编辑一个二维数组的表单域时,如果编辑导致任何两个元素相等,则删除第二个相同的元素。如果我在数组上调用了 uniq 。我正在寻找关于为什么会发生这种情况的线索,以及关于防止它发生的任何想法。

<EDIT> 我应该包含从 Postgres 返回的错误... PG::InvalidTextRepresentation - 错误:多维数组必须具有具有匹配维度的数组表达式

背景:我正在使用 Rails 4.2.0、Ruby 2.1.1p76 和 Postgres 9.3.5。我有一个 Invoice 模型,它通过 CompileInvoice 保存来自其他模型的数据,CompileInvoice 是在项目完成并且所有适当的人工和 Material 数据都已更新时运行的单类服务。 Invoice 模型的目的是将来自多个模型的数据合并到单个记录中,并允许它以半不可变的形式存储。我说半不可变是因为我客户的会计部门希望有一次机会在发送给客户之前查看发票并进行更正。我的问题与此编辑有关。

有问题的字段是“materials”,它是这样创建的:

add_column :invoices, :materials, :text, 数组:true,默认值:[]

在我的 Invoice 模型中,我使用 for 下面的 getter 和 setter 来保留数组的二维配置:

class Invoice < ActiveRecord::Base
(...)
def materials_list= input
list =[]

input.each do |key, value|
list << value
end

self.materials = list.each_slice(4).to_a
end

def materials_list
self.materials
end
end

我在 InvoicesController 中的 invoice_params 方法如下所示:

class InvoicesController < ApplicationController
(...)
private
def invoice_params
params.require(:invoice).permit(
(...)
:materials_total
).tap do |whitelisted|
whitelisted[:materials_list] = params[:invoice][:materials_list]
end
end
end

我知道通常我想通过使用 :materials_list => [] 声明 materials_list 是一个数组,但是当我这样做时(作为我的白名单 block 的一部分或在允许的参数)对数据的任何更改都不会影响到模型。

这是来自 edit.html.erb 的相关 html:

thead>
<tr>
<th>Description</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Extended Price</th>
</tr>
</thead>
<tbody>
<%= f.fields_for :materials_list do |mm| %>
<% @invoice.materials_list.try(:each) do |element| %>
<tr>
<% element.try(:each) do |cell| %>
<td>
<%= mm.text_field cell, :value => cell, :class => 'form-control' %>
</td>
<% end %>
</tr>
<% end %>
<% end %>
</tbody>

这是一个请求参数,现在有 11 个元素,而不是构成数组中三个四元素数组的十二个元素——将“一”中的数量从 2 减为 1,这使得第三和第四个元素成为第一个数组相等。

"materials_list"=>{"one"=>"one", "1"=>"1", "3.01"=>"3.01", "two"=>"two",
"3"=>"3", "4.01"=>"4.01", "12.03"=>"12.03", "three"=>"three", "4"=>"4",
"5.01"=>"5.01", "20.04"=>"20.04"},

这是 IRB 中的数组:

materials:
[["one", "2", "3.01", "6.02"],
["two", "3", "4.01", "12.03"],
["three", "4", "5.01", "20.04"]]

我可以整天编辑这个数组,只有当我使两个元素相等时它才会中断。如上所述,就好像在数组上调用了 uniq。

最佳答案

虽然我对其他想法持开放态度,但我最终找到了解决问题的方法,因为我不确定它是否真的是最佳解决方案。在我的评论中,我注意到 post params 返回了一个哈希数组。我最终使用数组索引将键设置为散列以避免重复,并依赖 Invoice 模型中的 materials_list 方法在保存之前将散列转换为数组。

我还需要放弃在 View 中使用表,因为我不再有可在 View 中迭代的数组数组。

编辑.html.erb

<div class="row" id="miscMaterialsTable">
<% @invoice.misc_materials_list.try(:each_with_index) do |cell, i| %>
<%= f.fields_for :misc_materials_list do |array_form| %>
<div class="col-sm-3">
<%= array_form.text_field [i], :value => cell, class: 'form-control' %>
</div>
<% end %>
<% end %>
</div>

发票.rb

def misc_materials_list= input
list =[]

input.each do |key, value|
list << value
end

self.misc_materials = list.each_slice(4).to_a
end

def misc_materials_list
self.misc_materials.flatten
end

关于ruby-on-rails - rails 中的数组字段消除了编辑时的重复元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30959178/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com