對於超基本的http扭曲前端。 我怎樣才能確保沒有HTML寫回,除非我告訴它。覆蓋來自Twisted.web的所有默認資源/響應
所以,我有我/動物園網址下面。 對於任何回溯,或'沒有這樣的資源'的迴應,我想刪除連接或返回一個空的迴應。
我想這是一個超級簡單的,但無法弄清楚:) 我知道我可以做到這一點,沒有我的具體兒童路徑,但想要做到這一點高效率,只是想放棄它作爲儘可能早..也許不使用資源?
class HttpApi(resource.Resource):
isLeaf = True
def render_POST(self, request):
return "post..."
application = service.Application("serv")
json_api = resource.Resource()
json_api.putChild("zoo", HttpApi())
web_site = server.Site(json_api)
internet.TCPServer(8001, web_site).setServiceParent(application)