Serve stylesheet with webapp2 outside of Google App Engine

前端 未结 3 1664
谎友^
谎友^ 2021-01-13 22:14

So I have successfully deployed an app using webapp2/jinja2 and a Paste server, but am having trouble serving static stylesheets.

I have had luck accessing static fi

3条回答
  •  执念已碎
    2021-01-13 22:54

    self.response.headers.add_header('Content-Type', mimetypes.guess_type(abs_path)[0])
    self.response.headers['Content-Type'] = mimetypes.guess_type(abs_path)[0]
    

提交回复
热议问题