ajaxリクエストでエラー200が発生します。私のajaxリクエストのページにメールアドレスである1つの値を投稿したいと思います。誰かが何が悪いのか教えてもらえますか
エラー:
message=:[object Object], text status=:parsererror, error thrown:=SyntaxError: JSON.parse: unexpected end of data
$ .parseJSONに変更しただけで、エラーは発生しませんが、成功関数はJQueryに警告しません
$('#checkemail').click(function() {
var json = $.parseJSON({ "email": $('#email').val() });
$.ajax({
url:'http://' + location.host + '/buyme/include/getemailaddress.php',
type:'POST',
contentType: "application/json; charset=utf-8",
data: json,
dataType:"json",
success: function(msg) {
alert(msg);
},
error: function(msg, textStatus, errorThrown) {
alert( 'message=:' + msg + ', text status=:' + textStatus + ', error thrown:=' + errorThrown);
}});
});