我想知道如何使用像for
这样的东西,就像我在模板中一样,在这个函数中(在我的视图文件中):
def current_page(conn, data) do
case conn.request_path do
"/" -> "Home"
for i <- data do
i.link -> i.text
end
_ -> "Upps, not found!"
end
end
我在模板中传递data
:
<%= render FabricaASA.PageView, "head.html", conn: @conn,
data: [
%{link: "/main", text: "Main"},
%{link: "/home", text: "Home"},
]
%>