TemplateSyntaxError 无法解析余数
Posted
技术标签:
【中文标题】TemplateSyntaxError 无法解析余数【英文标题】:TemplateSyntaxError at Could not parse the remainder 【发布时间】:2018-08-31 22:20:21 【问题描述】:在我的 django 应用程序中,我试图从 JSON 变量中获取要加载的图像名称。在其 html 键中,有要显示的图像名称。 我正在读取该密钥并附加到静态路径中。但我收到此错误
TemplateSyntaxError at Could not parse the remainder
JSON
var json = [
"html": "abc.jpg", //testing this failed
"col": 1,
"row": 1,
"size_y": 2,
"size_x": 2
,
"html": "def.jpg",
"col": 4,
"row": 1,
"size_y": 2,
"size_x": 2
,
"html": "bac.jpg",
"col": 6,
"row": 1,
"size_y": 2,
"size_x": 2
,
"html": "xyz.jpg",
"col": 1,
"row": 3,
"size_y": 1,
"size_x": 1
,
"html": "Brand.jpg",
"col": 4,
"row": 3,
"size_y": 1,
"size_x": 1
,
"html": "Brand.jpg",
"col": 6,
"row": 3,
"size_y": 1,
"size_x": 1
];
我的循环用于提取图像名称和其他所需参数
for(var index=0;index<json.length;index++)
gridster.add_widget('<li class="new" ><button class="delete-widget-button" style="float: right;">-</button><img src="% static \'images/'+json[index].html+'\' %"></li>',json[index].size_x,json[index].size_y,json[index].col,json[index].row);
;
在这个循环中检查我得到的变量
var json = [
"html": "abc.jpg", //testing this failed
"col": 1,
"row": 1,
"size_y": 2,
"size_x": 2
,
"html": "def.jpg",
"col": 4,
"row": 1,
"size_y": 2,
"size_x": 2
,
"html": "bac.jpg",
"col": 6,
"row": 1,
"size_y": 2,
"size_x": 2
,
"html": "xyz.jpg",
"col": 1,
"row": 3,
"size_y": 1,
"size_x": 1
,
"html": "Brand.jpg",
"col": 4,
"row": 3,
"size_y": 1,
"size_x": 1
,
"html": "Brand.jpg",
"col": 6,
"row": 3,
"size_y": 1,
"size_x": 1
];
for(var index=0;index<json.length;index++)
console.log('<li class="new" ><button class="delete-widget-button" style="float: right;">-</button><img src="% static \'images/'+json[index].html+'\' %"></li>',json[index].size_x,json[index].size_y,json[index].col,json[index].row);
;
【问题讨论】:
% static \'images/'+json[index].html+'\' %
- 你不能这样做 - 在你的浏览器运行 javascript 循环之前,模板会在服务器上呈现。
那么在这种情况下如何加载图像我想从与json中名称对应的服务器加载图像
如果在模板中定义了json
,你可以在那里使用static
标签。或者您可能会发现最简单的方法是删除静态标签并硬编码前缀。
只是硬编码前缀作为放置服务器地址? 127.0.0.1:8000/static/imageshttp://127.0.0.1:8000/static/images
是的,我就是这个意思。但是,您不需要域,/static/images/
可以。
【参考方案1】:
% static \'images/'+json[index].html+'\' %
您不能这样做,因为% static %
模板标签是在浏览器运行您的 JavaScript之前在服务器上呈现的。
您可以使用get_static_prefix
标签(注意这不适用于所有静态文件存储后端)。
% load static %
"% get_static_prefix %" + json[index].html
或者,由于您在模板中定义了json
,您可以在那里重复使用static
。
var json = [
"html": "abc.jpg", //testing this failed
"image": "% static "abc.jpg" %",
...
然后在你的循环中使用image
。
【讨论】:
以上是关于TemplateSyntaxError 无法解析余数的主要内容,如果未能解决你的问题,请参考以下文章
如何解决 Django 中显示“无法解析剩余部分”的 TemplateSyntaxError
Django 1.1 TemplateSyntaxError - 无法导入 *.static.views