1
我工作的一個項目,我需要使用多個HTML頁面與我的代碼 喜歡互動: 查看index.html的第一: -渲染multipe HTML頁面
path = os.path.join(os.path.dirname(__file__), 'index.html')
self.response.out.write(template.render(path, template_values))
,然後當我按退出按鈕的程序應該查看此頁面: -
path = os.path.join(os.path.dirname(__file__), 'signOut.html')
self.response.out.write(template.render(path, template_values))
的問題是程序在同一時間觀看兩個頁面在一起,這不是我想要的。
你能PLZ告訴我怎樣才能查看它們seperately