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