4

Hello Udacity という単純な Web アプリケーションを作成して Google App Engine にアップロードしようとしていますが、エラーが何度も発生します。

Google App Engine からのエラー メッセージ:

11:57 PM Host: appengine.google.com
Error parsing yaml file:
Unable to assign value 'udacityassignment2' to attribute 'url':
Value 'udacityassignment2' for url does not match expression '^(?:(?!\^)/.*|\..*|(\(.).*(?!\$).)$'
  in "C:\Users\Wealthy\Desktop\ambhelloworld\udacityassignment2\app.yaml", line 12, column 8
2013-05-27 23:57:00 (Process exited with code 1)

You can close this window now.

app.yaml:

application: udacityassignment2
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /favicon\.ico
  static_files: favicon.ico
  upload: favicon\.ico

- url: udacityassignment2
  script: main.app

libraries:
- name: webapp2
  version: "2.5.2"

main.py:

import webapp2

class MainHandler(webapp2.RequestHandler):
    def get(self):
        self.response.write('Hello Udacity!')

app = webapp2.WSGIApplication([
    ('/', MainHandler)
], debug=True)

Google App Engine コンソール:

Error: Not Found
The requested URL / was not found on this server.

この問題を修正する方法についての支援をいただければ幸いです。

4

2 に答える 2

0

以下のように URL エントリを作成して、URL ルーティング テーブルを作成する際の柔軟性を高めることができます。

- url: .*
  script: main.app
于 2013-06-07T04:06:28.533 に答える