我有一个生成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>