0

很奇葩~

基本上我有一个标准的“喜欢!” 按钮:

<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 的东西吗?

4

1 回答 1

0

糟糕,前端人把 {{}} 改成了 {{}}

那是,{{}} to &#123;&#123;&#125;&#125;

:)

于 2012-08-20T20:52:15.160 回答