0
如果我不知道我的代碼將運行的域名,我可以使用類似以下的解決方案嗎?我有時將請求對象傳遞給這樣的模板,這樣做是否有缺點?Multitenant Facebook like solution
模板:
<iframe src="http://www.facebook.com/plugins/like.php?href=http://{{request.host}}" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe>
處理程序:
class HomeHandler(NewBaseHandler):
def get(self):
self.render_jinja('front.html', request=self.request)