我正在使用离子cordova进行混合移动应用程序开发。我在index.html中添加了以下内容
<body ng-app="starter">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.6&appId=4180553387979979380746";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<ion-nav-view></ion-nav-view>
</body>
这是我要显示评论框的
<div class="fb-comments" dyn-fb-comment-box data-mobile="true" data-width="100%" page-href="https://facebook.com/" data-numposts="15"></div>
当我在chrome中测试它时,它运行正常没有问题,但是当我做
时ionic build android and install the .apk file in my mobile, facebook comment box is not displayed at all.
有谁可以帮助我,我在这里缺少什么?