为什么我不能这样做:
defmodule M1 do
defstruct [:a, :b, :c, :d]
# other stuff
end
# ...............
schema "my_model" do
# .................
field :my_field, M1, virtual: true
错误
** (ArgumentError) invalid or unknown type MyApp.M1 for field :my_field
模块M1已解决,但为什么不允许使用它?
答案 0 :(得分:0)
如果要在字段中存储M1
结构,可以通过指定类型:any
来禁用Ecto的类型检查,这样您就可以存储任何内容。该领域:
field :my_field, :any, virtual: true
我没有办法让Ecto检查该字段是模块M1
的结构,除非您为该模块实现Ecto.Type
行为。