在phoenix框架中播种日期字段的正确方法是什么?

时间:2019-09-26 13:20:29

标签: elixir phoenix-framework seeding

我正在创建一个phoenix api应用程序。这是我的代码。

alias CardsWeb.Repo
alias CardsWeb.Infrastructure.User

Repo.insert! %User{login: "user", firstname: "User", lastname: "User", dateOfBirth: "1999-5-18"}

运行时出现以下错误

** (CompileError) priv/repo/seeds.exs:15: Infrastructure.User.__struct__/1 is undefined, cannot expand struct Infrastructure.User

这是实体定义。

defmodule Infrastructure.User do
  use Ecto.Schema
  import Ecto.Changeset

  schema "users" do
    field :dateOfBirth, :date
    field :firstName, :string
    field :lastName, :string
    field :login, :string

    timestamps()
  end

  @doc false
  def changeset(user, attrs) do
    user
    |> cast(attrs, [:login, :firstName, :lastName, :dateOfBirth])
    |> validate_required([:login, :firstName, :lastName, :dateOfBirth])
  end
end

更新:我注意到名字和姓氏应该是名字和姓氏。我已经纠正了,但是仍然出现相同的错误。

1 个答案:

答案 0 :(得分:2)

您不能直接将日期添加为字符串,而不能使用~D标记将日期添加为字符串:

dateOfBirth: ~D[1999-05-18]

编辑: 您在seeds.exs中为用户架构别名的名称空间也不正确,请更改:

alias CardsWeb.Infrastructure.User

alias Infrastructure.User