gpt4 book ai didi

elixir - 如何在 Ecto 模型中定义虚拟属性

转载 作者:行者123 更新时间:2023-12-04 05:29:29 26 4
gpt4 key购买 nike

我对 Ecto 模型中的虚拟属性不是很清楚,它是否只映射到查询结果?

最佳答案

documentation :

:virtual - When true, the field is not persisted to the database.



虚拟字段临时存在于架构中,并未保存在数据库中。这对本地流程和验证很有帮助。

示例:密码确认字段。
schema "users" do
field :username, :string
field :password, :string
field :password_confirmation, :string, virtual: true

timestamps
end

我希望这有帮助。

关于elixir - 如何在 Ecto 模型中定义虚拟属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37315105/

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