在jquery模板中使用jbuilder生成的json

时间:2019-06-08 02:21:06

标签: jquery ruby-on-rails json blueimp jquery-templates

我有一个生成json的jbuilder文件。我想在视图或jquery模板中使用json数据。呈现jbuilder文件时,我可以看到日志中返回了200,因此我假设json创建正确。如何在视图或jquery-template中使用这些变量?

# jbuilder
json.files [@upload] do |uploaded_file|
  json.id uploaded_file.id
end
# jquery-tempalte
<script type="text/x-tmpl">
  {% for (var i=0, file; file=o.files[i]; i++) { %}
    <input type="hidden" value="{%=file.id}">
  {% } %}
</script>

0 个答案:

没有答案