我有一个模式two_fa_details,其中answer和Question_id是字段,并且两者都是唯一的。 现在,当我尝试先向其中插入数据时,它会被插入,但是下次更新时无法正常工作。 它说约束错误。
我有一个用于更新表的函数set_two_factor_details。 该函数可以很好地在非常短的时间插入数据。.但是当iam更新它时...不起作用..我为此函数提供了一个PUT API。 这是我的模式two_fa_details的迁移文件
def change do
create table(:two_fa_details) do
add :answer, :string
add :userprofile_id, references(:user_profile, on_delete: :nothing)
add :question_id, references(:questions, on_delete: :nothing)
timestamps()
end
create index(:two_fa_details, [:userprofile_id])
create index(:two_fa_details, [:question_id])
create unique_index(:two_fa_details, [:userprofile_id, :question_id], name: :user_twofa_detail)
end
这是一段代码
def set_twofactor_details(client_id, twofa_records) do
user = Repo.get_by(UserProfile, client_id: client_id)
twofa_records = Enum.map(twofa_records, &get_twofa_record_map/1)
Enum.map(twofa_records, fn twofa_record ->
Ecto.build_assoc(user, :two_fa_details)
|> TwoFaDetails.changeset(twofa_record)
end)
|> Enum.zip(0..Enum.count(twofa_records))
|> Enum.reduce(Ecto.Multi.new(), fn {record, id}, acc ->
Ecto.Multi.insert_or_update(acc, String.to_atom("twfa_record_#{id}"), record)
end)|>IO.inspect()
|> Ecto.Multi.update(
:update_user,
Ecto.Changeset.change(user, two_factor_authentication: true, force_reset_twofa: false)
)
|> Repo.transaction()|>IO.inspect()
|> case do
{:ok, _} ->
{:ok, :updated}
{:error, _, changeset, _} ->
error_string = get_first_changeset_error(changeset)
Logger.error("Error while updating TWOFA: #{error_string}")
{:error, 41001, error_string}
end
end
输出应该基本上是更新表并返回两个fa details更新消息。 但在日志中显示约束错误。请帮助我。.我是灵丹妙药。
{:error, :twfa_record_0,
#Ecto.Changeset<
action: :insert,
changes: %{answer: "a", question_id: 1, userprofile_id: 1},
errors: [
unique_user_twofa_record: {"has already been taken",
[constraint: :unique, constraint_name: "user_twofa_detail"]}
],
data: #Accreditor.TwoFaDetailsApi.TwoFaDetails<>,
valid?: false
>, %{}}
[error] Error while updating TWOFA: `unique_user_twofa_record` has already been taken
答案 0 :(得分:1)
您写道:
输出应该基本上是更新表并返回两个fa details更新消息。
但是代码返回:
#Ecto.Changeset<
action: :insert,
changes: %{answer: "a", question_id: 1, userprofile_id: 1},
errors: [
unique_user_twofa_record: {"has already been taken",
[constraint: :unique, constraint_name: "user_twofa_detail"]}
],
data: #Accreditor.TwoFaDetailsApi.TwoFaDetails<>,
valid?: false
>
看看它怎么说action: :insert
。因此,您不是在更新而是在插入,它可以解释该错误。
insert_or_update
仅在从数据库加载记录时才更新记录。在您的代码中,您是从头开始构建记录,因此它们将始终是插入内容。在将它们传递到变更集之前,您需要使用Repo.get
或类似方法来获取它们,以便最终可以调用insert_or_update
。
答案 1 :(得分:0)
我尝试通过将upserts
用于ecto
而且有效。
这是要参考的代码片段
Ecto.Multi.insert_or_update(acc, String.to_atom("twfa_record_#{id}"), record,
on_conflict: :replace_all_except_primary_key,
conflict_target: [:userprofile_id, :question_id] )