我正在学习在 Google App Engine 中进行开发。

这是教程中的代码之一,http://code.google.com/appengine/docs/python/gettingstarted/usingwebapp.html

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class MainPage(webapp.RequestHandler):
    def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.out.write('Hello, webapp World!')

application = webapp.WSGIApplication(
                                     [('/', MainPage)],
                                     debug=True)

def main():
    run_wsgi_app(application)

if __name__ == "__main__":
    main()

我有几乎相同的代码。我有时会收到警告:



任何人都可以使用 use_library() 重新分解上述代码。我不确定如何开始以及在哪里使用 use_library 以及如何处理 webapp。

提前致谢。

最佳答案

上面的代码应该不需要你直接调用 use_library。

如果您在应用程序的根目录中创建一个名为 appengine_config.py 的新文件并将以下行添加到其中:

# Make webapp.template use django 1.2
webapp_django_version = '1.2'

关于google-app-engine - 如何使用 use_library ('django' ,'1.2' ),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6536577/

10-12 16:46