嘿朋友们,我正在使用 javascript sdk 使用 jQuery facebook 多朋友选择器在用户朋友墙上发布,但是我收到此错误,friendId.split is not a function。这是我的代码
function recommendToFriend(pic, url, friendId, fromName)
{
alert(friendId);
var friendList ;
pFriend = new Array();
pFriend = friendId.split(',');
for( x in pFriend )
{
alert(pFriend[x]);
var publish = {
method:'feed',
picture:pic,
link:url,
name:'SHARP Product Recommend',
caption: fromName + 'has recommend a product to you via Sharp Expert lounge',
};
FB.api('/'+pFriend[x]+'/feed', 'post', publish, function(resp) {
if( !response || response.error )
alert('Unable to share');
else
alert('Successfully posted to firends wall');
});
}
}
在警告框中,我得到了逗号分隔的朋友 ID,所以我在每个用户墙上分别使用拆分功能帖子我不知道这里有什么问题请帮助我