fb评论href不使用angularjs

时间:2014-04-09 09:08:30

标签: facebook angularjs angularjs-scope facebook-comments angular-ui-bootstrap

我已在我的页面上安装了下面的FB插件,我在其中指定了data-href,如下所示:

<div class="fb-comments"  data-href="http://pingle.com/ngdemo" data-width="550px" data-numposts="5" data-colorscheme="light"></div>

但是当我尝试为其设置范围值以使URL具有特异性时,它不会接受它并且在检查firefox时,值{{post.id}}没有被添加到fb DIV中的URL。 / p>

    <div class="fb-comments"  data-href="http://pingle.com/ngdemo?postId={{ post.id }}" data-width="550px" data-numposts="5" data-colorscheme="light"></div>

PS:当我在html上打印它时,就在fb插件上面,它显示得很好吗?有没有办法将范围值附加到fb注释的data-href属性?

1 个答案:

答案 0 :(得分:1)

尝试ng-attr-*这样的

<div class="fb-comments"  ng-attr-data-href="http://pingle.com/ngdemo?postId={{ post.id }}" data-width="550px" data-numposts="5" data-colorscheme="light"></div>