在我的凤凰应用程序中,我的用户模型如下:
defmodule MyApp.User do
use MyApp.Web, :model
schema "users" do
field :username, :string, unique: true
field :email, :string, unique: true
field :crypted_password, :string
field :password, :string, virtual: true
timestamps
end
@required_fields ~w(email password username)
@optional_fields ~w()
@doc """
Creates a changeset based on the `model` and `params`.
If no params are provided, an invalid changeset is returned
with no validation performed.
"""
def changeset(model, params \\ :empty) do
model
|> cast(params, @required_fields, @optional_fields)
|> unique_constraint(:email)
|> unique_constraint(:username)
|> validate_format(:email, ~r/@/)
|> validate_length(:password, min: 5)
end
end
我也有以下迁移:
defmodule MyApp.Repo.Migrations.CreateUser do
use Ecto.Migration
def change do
create table(:users) do
add :email, :string
add :username, :string
add :crypted_password, :string
timestamps
end
create unique_index(:users, [:email])
create unique_index(:users, [:username])
end
end
我的registration_controller_ex
如下:
defmodule MyApp.RegistrationController do
use MyApp.Web, :controller
alias MyApp.User
def new(conn, _params) do
changeset = User.changeset(%User{})
render conn, changeset: changeset
end
def create(conn, %{"user" => user_params}) do
changeset = User.changeset(%User{}, user_params)
if changeset.valid? do
user = MyApp.Registration.create(changeset, MyApp.Repo)
conn
|> put_flash(:info, "Your account was created")
|> redirect(to: "/")
else
conn
|> put_flash(:info, "Unable to create account")
|> render("new.html", changeset: changeset)
end
end
end
所以,尽管如此,我非常确定User中的username
和email
字段是唯一索引。我还通过调用unique_constraint
来验证User.changeset来确保它们是唯一的。但是,在我的界面中,我创建的用户使用与之前创建的用户相同的电子邮件和用户名,验证变更集并“创建”用户。 (实际上并没有创建,当我查看数据库时没有添加任何东西)
我的服务器日志上有以下内容,但我的changeset.valid?是的。
[debug] BEGIN [] OK query=139.3ms queue=8.2ms
[debug] INSERT INTO "users" ("crypted_password", "email", "inserted_at", "updated_at", "username") VALUES ($1, $2, $3, $4, $5) RETURNING "id" ["$2b$12$MN1YxFUGLMIJYXseZn0sjuuVs9U1jRdYtRr9D8XQsAqdh.D2sRRXa", "email@gmail.com", {{2015, 9, 30}, {11, 7, 25, 0}}, {{2015, 9, 30}, {11, 7, 25, 0}}, "username"] ERROR query=5.5ms
[debug] ROLLBACK [] OK query=0.4ms
此外,我在User.changeset函数中查找的其他内容(例如最小密码长度和其他内容)会报告给用户,并且工作正常。只是:email
和:username
的唯一索引无法报告。
答案 0 :(得分:17)
数据库将检查 String hashTwo="A28904048E";
long sum=0;
for(int i=0;i<hashTwo.length();i+=2){
sum+=Integer.parseInt(""+hashTwo.charAt(i)+hashTwo.charAt(i+1),16);
}
System.out.println(Long.toHexString(sum));
,因此只有在插入记录时才会触发。调用unique_constraint
不会检查约束,因此在这种情况下返回true。您需要检查Repo插入的返回元组并按照以下方式操作:
changeset.valid?
现在您的def create(conn, %{"user" => user_params}) do
changeset = User.changeset(%User{}, user_params)
case MyApp.Repo.insert changeset do
{:ok, changeset} ->
conn
|> put_flash(:info, "Your account was created")
|> redirect(to: "/")
{:error, changeset} ->
conn
|> put_flash(:info, "Unable to create account")
|> render("new.html", changeset: changeset)
end
end
已经过了丰富,您应该可以使用changeset.errors