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 %>