Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何在 mako 中做到这一点:
<% import cherrypy %> ... <link rel="stylesheet" href="${cherrypy.url('/media/layout.css')}" type="text/css" /> AttributeError: 'Undefined' object has no attribute 'url'
答案:而不是<% import cherrypy %>一个需要<%! import cherrypy %>
<% import cherrypy %>
<%! import cherrypy %>