Не могу полуить свойства объекта
Пример php к которому обращаемся через ajax
<?php
$json = [];
$json['error'] = 'error';
$json['warning'] = 'warning';
echo json_encode($json);
Пример js скрипта
<script>
$(".button__client").click(function () {
var name = $(this).attr('data-name')
var id = $(this).attr(`data-id`)
$.ajax({
type: 'post',
url: name + '/' + id,
beforeSend: function () {
$('.loader-div').show()
},
success: function (data) {
console.log(data)
console.log(data.error)
}
});
})
</script>
Распечатка по data
console.log(data)
{"error":"error","warning":"warning"}
А вот почему то data.error
console.log(data.error)
undefined