我有多个使用fb:friend-selector
的应用表单元素不再出现。代码中没有任何变化。
示例:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'myyappid',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'http://mydomain.com/channel.html', // Custom Channel URL
oauth : true //enables OAuth 2.0
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<fb:serverfbml>
<script type="text/fbml">
<fb:fbml>
<fb:friend-selector />
</fb:fbml>
</script>
</fb:serverfbml>
答案 0 :(得分:0)
尝试使用FB.XFBML.parse开发解析XFBML:
http://developers.facebook.com/docs/reference/javascript/FB.XFBML.parse/
我还建议将其放在一些div
元素中
FB.XFBML.parse(的document.getElementById( 'MY_DIV'));
答案 1 :(得分:0)
刚刚找到解决方案,抛弃标准html <form>
并改为使用<fb:editor>
。是的,这可能不是您想要的,但现在<fb:friend-selector>
将呈现。