2014-07-09 3 views
3

음을 반환, 이것은 내가이 얻을 브라우저 0.0.0.0:8080/Test 를 통해 유입되는 app.pySubapps 항상 405

urls = (
    '/', 'Index', 
    '/Test', 'module.test_module.test_app' 
    ) 

내 test_module.py

import web 
urls = (
    "/(.*)", "Test" 
) 

class Test: 
    def GET(self): 
     return "HELLO" 

test_app = web.application(urls, locals()) 

내 코드에 내 콘솔 :

yanniks-mbp:page user$ python app.py 
http://0.0.0.0:8080/ 
127.0.0.1:55914 - - [09/Jul/2014 22:47:43] "HTTP/1.1 GET /Test" - 405 Method Not Allowed 

내 폴더 구조는 다음과 같습니다.

app.py 
module (folder) 
    | 
    - __init__.py 
    - test_module.py 
    - other_files.py 

URL에 직접 가져 오기 또는 직접 선언을 사용하는 것이 엉망이라고 생각하지만 실제로 무엇을 모르겠습니다. 어떤 아이디어?

답변

1

test_module에서 web.application을 실행하지 않아도되고 app.js에서 Test 클래스를 직접 참조 할 수 있습니다.

app.py

import web 

urls = (
    '/', 'Index', 
    '/Test', 'module.test_module.Test' 
) 

if __name__ == "__main__": 
    app = web.application(urls, globals()) 
    app.run() 

모듈/__ init__.py

import test_module 

모듈/test_module.py

class Test: 
    def GET(self): 
     return "HELLO"