Не совсем понял вопрос.
Я запрос делаю таким образом:
$.ajax({
url: "/zf/test/zend",
data: {
format: "json"
},
dataType: "json",
success: function(data, textStatus, XMLHttpRequest) {
console.log(data);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("Ошибка");
console.log(XMLHttpRequest, textStatus, errorThrown);
console.log(errorThrown.message);
console.log(errorThrown.stack);
console.log(errorThrown.type);
}
});