jQuery edemez json yanıtı dönüşümü

0 Cevap php

Ben teslim işlemek için form eklentisi ile jquery kullanıyorum ama istemci sunucu yanıtını aldığınızda bir json nesnesi geçmek olamaz:

var options = { 
    success: showResponse,   
    dataType: 'json',
    error: errorhandler
};
$('#UserEditForm').ajaxForm(options);

The server response is generate with the _json_encode_ php function.
When I submit the form, always the errorhandler function is called and I check the response with firebug it comes with some kind of a space after the first "{"

" {"status":1"}"

O utf-8 kodlamak ve böyle bir şey ile:

"{"status":1}"

ile iso-8859-1.

Teşekkürler!

0 Cevap