Сообщение от рони
|
Desantnik3,
попробуйте так
// Вывод удаленных/забанненых
function drawBanFriends(items){
var html = '';
items.forEach(function(g) {
var online = g.online ? '<span style="color:green">Online</span>' : '<span style="color:#ff0000">Offline</span>';
var deactivate = g.deactivated ? g.deactivated : '';
if (deactivate == 'deleted') {
deactivate = html +=
'<li>'
+'<a target = "_blank" href="http://vk.com/id'+ g.id +'">'
+'<img src = "'+g.photo_100+'"/>'
+'<div>'
+'<h4>'+ g.first_name +' '+ g.last_name +'</h4>'
+'<p>'+online+'</p>'
+'<p>Пользователь удалил страницу</p>'
+'<button> Написать </button>'
+ '</div>'
+'</a>'
+'</li>';
} else if (deactivate == 'banned') {
deactivate = html +=
'<li>'
+'<a target = "_blank" href="http://vk.com/id'+ g.id +'">'
+'<img src = "'+g.photo_100+'"/>'
+'<div>'
+'<h4>'+ g.first_name +' '+ g.last_name +'</h4>'
+'<p>'+online+'</p>'
+'<p>Пользователь заблокирован</p>'
+ '</div>'
+'</a>'
+'<button class="del" data-id="'+g.id+'"> Удалить2 </button>'
+'</li>';
} else {
deactivate = '';
}
})
$('ul').html(html);
$('.del').on('click', function() { console.log(this.dataset.id);
sendRequest('groups.removeUser', { group_id: 148888375, user_id: this.dataset.id}, function (data) {
drawBanFriends(data.response);
});
});
}
|
index.html:54 Uncaught TypeError: items.forEach is not a function
at drawBanFriends (index.html:54)
at Object.success (index.html:90)
at i (jquery.min.js:2)
at Object.fireWith [as resolveWith] (jquery.min.js:2)
at A (jquery.min.js:4)
at HTMLScriptElement.c (jquery.min.js:4)
at HTMLScriptElement.dispatch (jquery.min.js:3)