12月10日 render( locals:{...}) 传入本地变量。
Posted Mr-chen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12月10日 render( locals:{...}) 传入本地变量。相关的知识,希望对你有一定的参考价值。
Jdstor第一部分后台设计,4-4上传图片。
3.4 Using Partials--3.4.4 Passing Local Variables
You can also pass local variables into partials, making them even more powerful and flexible.
show.html.erb:
<%= render partial:"image", locals:{product:@product} %>
_image.html.erb:
http://upload.cnblogs.com/ImageUploader/Upload?host=www.cnblogs.com&editor=2
错误:
1. 我在admin/index.html中,想使用partial上传图片。但发生❌。 后来发现locals:{option:变量根据实际情况写} //因为,可能是带@,也可能不带@。只要是变量就能传入,比如字符串也可以。
这样写<%= render partial:"image", locals:{product:@product, title:" 测试功能!"} %> ,在局部view中可以<%= title %>, browser上会在相应位置显示 "测试功能!"
以上是关于12月10日 render( locals:{...}) 传入本地变量。的主要内容,如果未能解决你的问题,请参考以下文章