很奇葩~
基本上我有一个标准的“喜欢!” 按钮:
<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 的东西吗?