我想用 Javascript 开发一个应用程序,并在 Android 和 iOS 上使用 Phonegap 部署它。我想使用 Facebook 登录我的应用程序。
因此,我查看了 phonegap-facebook 插件,一切正常(我设法使用 FB 登录)。问题是当我想对插件提供的示例代码进行“角度化”时:在 index.html 中我嵌入了这样的 JS:
<script>
// Initialize the Facebook SDK
document.addEventListener('deviceready', function() {
FB.init({
appId: 'XXX',
nativeInterface: CDV.FB,
useCachedDialogs: false
});
FB.getLoginStatus(handleStatusChange);
authUser();
updateAuthElements();
});
</script>
调用的js方法直接更新显示(使用document.getElementById)。我想在我的 index.html 和 javascript 代码之间创建一个绑定,以便使用类似的东西打印 facebook 令牌和名称
{{user.token}} and {{user.names}}
有人设法意识到这样的事情吗?
非常感谢!