我的代码中有一个错误,但看不到我做错了什么。
我所拥有的是通过 jQuery UI 自动完成填充的 facebook 用户 ID 的隐藏输入:
<input id="fbid" type="hidden" value="12345, 567890, ">
然后我有一个 jQuery 函数,该函数在单击链接以发布到朋友的墙上时运行。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '12345678', // App ID
channelUrl : '/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // enable OAuth 2.0
xfbml : true // parse XFBML
});
// Additional initialization code here
FB.login(function(response)
{
if (response.authResponse)
{
$("#send-voucher").click(function() {
// Post message to friend's wall
var opts = {
message : 'This is the message',
name : 'This is the name',
link : 'http://www.opticalexpress.co.uk',
description : 'This is the description',
picture : '/voucher_valid.png'
};
var referees = $("#fbid").val();
// remove last comma and space from the end of the string
referees = $.trim(referees);
referees = referees.substring(0, referees.length - 1);
var referee = referees.split(',');
referee.each(function() {
FB.api('/'+ referee +'/feed', 'post', opts, function(response)
{
if (!response || response.error)
{
alert('Posting error occured');
}
else
{
alert('Success - Post ID: ' + response.id);
$("#send-voucher").hide();
$("#voucher-sent").fadeIn('slow');
}
});
});
});
}
else
{
alert('Not logged in');
}
}, { scope : 'publish_stream' });
};
当我点击发送凭证时,错误来自我else
上面声明中的警报对话框:
Posting error occured
我添加了另一个警报,以了解为什么在循环打开后会发生这种情况:
$.each(referee, function() {
referee = $.trim(referee);
alert(referee); // new alert for debugging
....
此警报输出的值让我感到惊讶,因为referee
is 12345, 567890
(与隐藏输入相同,但删除了尾随空格和最后一个逗号)。
因此,jQuery 似乎没有正确拆分它,但它运行循环正确的次数,因为警报框弹出两次告诉我裁判,然后是错误。(两个警报框显示两次只是为了澄清)。如果这是一个巧合,我尝试在隐藏输入中添加更多 id,并且可以确认警报框显示的次数与 id 的数量相同。
所以我想知道我做错了什么,因为循环运行了正确的次数,但逗号分隔的 id 似乎根本没有被分割。