параметры и эти параметры записываю в этот массив. Как мне теперь его передать? Передаю с помощью axios, но получаю пустой массив на сервере. Как ео передать? В консоли отображется этот массив с ключами.
let arr = new Map();
function sort(param, type, el){
el.classList.toggle('aside__box__list__button--active');
if(arr.has(param)){
arr.delete(param);
http();
}else{
arr.set(param, param);
http();
}
console.log(arr);
function http(){
axios.post('/api/sort',{
type: type,
param: arr,
url: url
}).then((response)=>{
window.param = param;
window.type = type;
let div = document.querySelector('.box__content');
let html = '';
response.data.result.forEach((item)=>{
@include('components.scripts.jshtml')
});
div.innerHTML = html;
}).catch((error)=>{
console.log(error)
});
}
}
Map это не массив
JSON.stringify([...arr])
Обсуждают сегодня