Python web.py 模板,如何转义 (.) 点
在 web.py 模板:index.html 中我写道:
$def with(s)
<img src="$s.filename.png" />
s.filename 的值是“picuture”,所以我想打印
<img src="picture.png" />
,但如何告诉 web.py 模板系统不要使用 $s.filename.png 只使用 $s。文件名并添加“.png”?
In web.py template: index.html I wrote:
$def with(s)
<img src="$s.filename.png" />
s.filename's value is "picuture" so I want to print
<img src="picture.png" />
but how can I tell web.py templating system do not to use $s.filename.png just use $s.filename and add ".png" to it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 Templetor 文档:
所以,就你而言,
See the Templetor docs:
So, in your case,