在mako模板中:在html字符串中调用python函数

时间:2010-10-24 10:41:47

标签: python cherrypy mako

我如何在mako中执行此操作:

<% import cherrypy %>
...
<link rel="stylesheet" href="${cherrypy.url('/media/layout.css')}" type="text/css" />

AttributeError: 'Undefined' object has no attribute 'url'

1 个答案:

答案 0 :(得分:3)

答案:而不是<% import cherrypy %>需要<%! import cherrypy %>