我试图通过Flash消息将查询的成功或不成功通过Phoenix Framework中的RethinkDB获取。但是,我不知道在我的代码块中从RethinkDB检索结果消息的正确签名。
def index(conn, _params) do
#Query that creates a table in the database
table_create("contentText")
|> Basedados.Database.run
# List all elements of a table from the database
q = table("contentText")
|> Basedados.Database.run #Run the query through the database
|> IO.inspect
conn
|> put_flash(:error, "Some Message")
|> put_flash(:info, "Another Message")
|> render "index.html", contentText: q #Render users searched on the users template
end
编辑:好的,我发现应该有一个错误字段:
%RethinkDB.Record{data: %{"deleted" => 0, "errors" => 0, "generated_keys" => ["15cc4e19-fc72-4c19-b3a5-47141b6a63e0"], "inserted" => 1, "replaced" => 0, "skipped" => 0, "unchanged" => 0}}
但是我似乎没有(我尝试过q.errors
和q.data.errors
),每次都会出错。
我测试的错误是数据库表是否存在(我将contentText完全更改为其他内容)。
我可以使用数据进行错误检查:
q = table("contentText")
|> Basedados.Database.run #Run the query through the database
if is_nil(q.data) do
conn
|> put_flash(:error, "Error")
|> render "index.html", contentText: "failed" #Render users searched on the users template
else
conn
|> put_flash(:info, "Sucess")
|> render "index.html", contentText: q #Render users searched on the users template
end
然而,这似乎是一个有限的解决方案,因为它只检测消息中是否有数据。错误可能完全不同。而且由于该字段似乎计算它们,我希望得到该值并在我的条件中使用它(如果错误> 0)。 我需要什么来获得该领域?
答案 0 :(得分:0)
使用q.data["errors"])
代替q.data.errors
。
根据问题hamiltop/rethinkdb-elixir#59,您可以在失败时使用q.data["r"]
。