Мне нужно подсчитать длину ответа Ajax, выполненного в jQuery. Ответ находится в формате JSON и содержит только одну строку. Я получаю значение, но не знаю, как подсчитать длину этой строки.
Здесь мой код:
var tempId;
$.ajax({
url: "<?=base_url();?>index.php/sell/decoder",
type: "POST",
data: {'str' : sometext},
dataType: 'json',
async: false,
success: function(response) {
tempId = response; // This gives me a return value as a string. For example = 153
alert(tempId.length); // But this returns "undefined". What should I do to get the length?
}
});
Здесь структура заголовка ответа:
Connection Keep-Alive
Content-Length 2
Content-Type text/html
Date Fri, 06 Jul 2012 08:12:12 GMT
Keep-Alive timeout=5, max=86
Server Apache
X-Powered-By PHP/5.3.10