作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有 2 个文件,create.js.eex
和 post.html.eex
,我想渲染 post.html 的内容
模板。像这样的事情:create.js.eex
模板内的 .eex
$("#something").append("<%= safe_to_string render "post.html", post: @post %>");
上面的示例不起作用,因为我需要转义返回的字符串中的引号和其他内容,但我找不到方法来做到这一点
最佳答案
您可以使用render_to_string
Phoenix.View.render_to_string(MyApp.PageView, "index.html", foo: "bar")
请注意,这可能会让您面临 XSS。
关于elixir - 如何在Phoenix框架中的javascript模板中渲染html模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32918771/
我是一名优秀的程序员,十分优秀!