作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使我的应用程序干燥和模块化。但是,当我尝试将一个接收调用/“实例化”它时传递的动态值的组件(小模板)放入另一个模板(更大的模块)中时,我收到了这个错误:
assign @conn not available in eex template. Available assigns: []
<div class="menuButton main <%= @class %>" id="<%= @id %>">
<div class="menuButton firstChild linesItem"></div>
<div class="menuButton firstChild textItem">MENU</div>
</div>
<%= render myapp.ComponentView, "menuButton.html", class: nil, id: "menuButtonMenu" %>
<%= render myapp.ModuleView, "header.html" %>
最佳答案
正如 AbM 所说,您需要明确传递您关心的分配,例如:
<%= render myapp.ModuleView, "header.html", conn: @conn %>
assigns
中引用它们。像这样:
<%= link "a link", to: "/", class: assigns[:class] || "default" %>
关于elixir - Phoenix : render template that has assigns values inside a template,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33963201/
我是一名优秀的程序员,十分优秀!