массив приходит, а записать в переменную я его не могу. Использую vue
methods: {
sendAjax(action, mode, params = {}) {
const request = BX.ajax.runComponentAction('ramapriya:hr.form', action, {
mode: mode,
data: params
})
request.then(response => {
if(response.status === 'success') {
return response.data;
} else {
return response.errors
}
});
},
getQueryData() {
const params = {
action: 'get_query_data’
};
const request = this.sendAjax('sendRequest', 'class', params)
if(request.qualities) {
this.qualities = request.qualities;
}
}
},
created() {
this.getQueryData()
}
нужно ли добавлять async и await к sendAjax() или надо её в промис упаковывать?
решил вопрос с помощью async и await
Обсуждают сегодня