2

我如何在 mako 中做到这一点:

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

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

1 回答 1

3

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

于 2010-10-25T07:47:14.243 回答