Merge branch 'master' of github.com:yumoqing/ahserver
This commit is contained in:
commit
66116f313c
@ -278,7 +278,7 @@ class ProcessorResource(StaticResource,Url2File):
|
||||
config = getConfig()
|
||||
url = self.entireUrl(request, url)
|
||||
host = '/'.join(str(request.url).split('/')[:3])
|
||||
path = request.path #url[len(host):].split('?')[0]
|
||||
path = url[len(host):].split('?')[0]
|
||||
real_path = self.abspath(request, path)
|
||||
if config.website.startswiths:
|
||||
for a in config.website.startswiths:
|
||||
@ -311,6 +311,7 @@ class ProcessorResource(StaticResource,Url2File):
|
||||
|
||||
async def path_call(self, request, path, params={}):
|
||||
url = self.entireUrl(request, path)
|
||||
|
||||
fpath = self.url2file(url)
|
||||
processor = self.url2processor(request, url, fpath)
|
||||
return await processor.path_call(request, params=params)
|
||||
|
Loading…
Reference in New Issue
Block a user