JavaScript 模板
有谁知道是否有办法在 Genshi 中创建 javascrit 模板?我的意思是,我需要一个 .js 文件,在其中可以使用
等指令。
有什么想法吗?谢谢!
Does anyone know if is there any way to create javascrit templates in Genshi? I mean, I need a .js file where I can use directives like <py:for>
and so.
Any idea? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以直接在html中这样写:
注意:CDATA里面的代码会被右转义,所以你可以使用'>','<'照常。
You can write it directly in html like this:
note: code inside CDATA will be right escaped, so you can use '>','<' as usual.