很奇怪〜
基本上我有一个标准的“喜欢!”按钮:
<div class="fb-like" data-href="myURL/things/{{MyINFO}}/" data-send="false" data-width="450" data-show-faces="true"></div>
在views.py上,我有:
def myView(request):
#Other things
ctx = {
'MyINFO' : MySTRING,
'Otherstuff' : Otherstuff
}
return render_to_response('myApp/myPage4.html', ctx, RequestContext(request))
当用户“喜欢”该页面时,他们应该喜欢myURL/things/MyString/
,但他们正在myURL/things/%7B%7BMyINFO%7D%7D/
在模板预处理之前,是否可以加载facebook内容?
答案 0 :(得分:0)
Woops,前端人员将{{}}更改为{{}}
即{{}} to {{}}
:)