不使用URL参数加载静态文件

时间:2015-07-10 05:19:49

标签: python google-app-engine

我遇到了一个奇怪的问题。我的静态文件似乎是为我的整个站点加载,除非我将参数传递给URL路由。例如......

静态文件加载:

('/profile', Profile)

class Profile(MainHandler):
    def get(self):
        self.render('profile.html')

静态文件无法加载:

('/profile/(\d+)', Profile)

class Profile(MainHandler):
    def get(self, user_id):
        self.render('profile.html')

有谁知道为什么会这样? profile.html通过两次调用保持不变。

0 个答案:

没有答案