FB.XFBML.parse无法重新加载FBML

时间:2011-08-12 22:14:51

标签: facebook fbml facebook-fbml

我使用AJAX请求加载以下内容。它适用于非ajax请求。

<div class='center' id='fb_invite_box'>
    <fb:serverfbml width="646" id="serverFbml">
          <script type="text/fbml" id="textFbml">
            <fb:request-form method='post' action='<%=invites_url%>' type='test' invite='true' content="test text">
                <fb:multi-friend-selector actiontext='Invite your friends to my app!' rows='3' cols='4' import_external_friends='false' email_invite='true'/>
            </fb:request-form>
          </script>    
    </fb:serverfbml>
</div>

我是根据我在ajax请求后学习渲染FBML的方法运行的。

FB.XFBML.parse(的document.getElementById( 'fb_invite_box'));

我收到此错误:

<fb:serverfbml> requires the "fbml" attribute.

我错过了什么吗?为什么这不起作用?

1 个答案:

答案 0 :(得分:1)

由于FBML很快就被弃用(https://developers.facebook.com/docs/reference/fbml/),我建议您使用新的https://developers.facebook.com/docs/reference/dialogs/requests/请求对话框邀请其他人加入您的应用。