目前我有带有rails后端的骨干RIA。我正在使用 haml_coffee_assets gem 进行客户端模板。但我想念那里的rails view helpers。
我决定将原始 html 字符串添加到我的主干模型中。所以,我的咖啡脚本中有这种对象
Object
avatar: "/avatars/small/missing.png"
avatar_link: "<a href="/users/ortepko" class="author" id="user-nick-76"><img src="/avatars/small/missing.png" width="32" /></a>"
humanized_messages_number: "1 Message "
id: 76
login_name_link: "<a href="/users/ortepko" class="author" id="user-nick-76">ortepko</a>"
我的模板代码变得非常简单
.text_content
.comment
= @contact.avatar_link
.text
= @contact.login_name_link
.messages
%a{href: '#'}
= @contact.humanized_messages_number
现在我想渲染一个模板
JST['messages/yet_another_template'] {contact: contact}
但它似乎不起作用。