У меня есть данные вызова API от DB, в одном столбце хранится имя файла изображения. Я хочу разделить файл и получить последние 3 буквы каждого имени файла после точки. Я застрял здесь:
axios.get('/api/v1/chats/messages/' + this.chat).then(response => {
this.result = response.data;
this.details = this.result.data;
for (var j = 0; j < this.details.length; j++) {
this.str = this.details[j].image;
this.details[j].image_type = this.str.split(".");
}
console.log(this.details)
})
.catch(error => {
toastr.error('Something went wrong', 'Error', {
positionClass: 'toast-bottom-right'
});
this.cancelAutoUpdate();
});
Буду очень признателен, если кто-нибудь сможет мне помочь ИЛИ, пожалуйста, дайте мне знать, есть ли другой способ получить расширение файла в vue js. Спасибо :)