在通过通配符使用路径时,瓶子模板丢失了样式元素
/ post /
我使用的是Bottle,而Pycharm使用的是Python 2.7
@route('/ post /') def post(post_id):
return template('post',title="Post",result="", post_id=post_id )
/-索引,/ contact之类的路由运行良好
答案 0 :(得分:0)
这是我的路线
@route('/ post /')def post(pid): return template('post',title =“ Post”,result =“”,pid = pid)
@route('/ css /') def css(文件名): 返回static_file(filename,root ='static / css')
模板
问题 CSS可以用于除此以外的其他模板