0

我遇到了ajax请求的问题。每当我运行以下命令时,我都会得到一个x(正如下面请求中的错误函数生成的那样),但我应该得到刻度图像,因为我确认调用确实在系统中进行了更改。

谁能帮我弄清楚我做错了什么?

阿贾克斯调用:

$.ajax({
    url: "/URL",
    type: "POST",
    dataType: 'json',
    data: { action: 'assoc_users', username: 'testuser', name: 'testname' },
    success: function(){
    $("#user_1_image").attr("src","http://domain.com/check.png");
  },
    error: function(){
    $("#user1_status").html("x");
  }
}); 

将作为输出的数据:

{status: 'OK', payload: ''}
4

3 回答 3

1

如果您从指定的 url 获取有效的 json,那么这将起作用,因为在您的代码中,您没有在成功函数中传递数据:

$.ajax({
    url: "/URL",
    type: "POST",
    dataType:'json',
    data: { action: 'assoc_users', username: 'testuser', name: 'testname' },
    success: function(data){
      if(data){
        $("#user_1_image").attr("src","http://domain.com/check.png");
      }
    },
    error: function(){
       $("#user1_status").html("x");
    }
});
于 2012-12-18T11:09:29.290 回答
1

您的 json 字符串中有 Parse 错误,请先检查您的 json 字符串

Parse error on line 1:
{    action: 'assoc_users
-----^
Expecting 'STRING', '}'

我已经更正了您的 json 字符串并进行了尝试。试试这个有效,

$(document).ready(function() {
 var actions = { "action": "assoc_users", "username": "testuser", "name": "testname" };
    $.ajax({
    url: "/URL",
    type: "POST",
    data: actions,
    dataType: "json",
    success: function(data){
        alert('action'+data.action+'username'+data.username+'name'+data.name); // this is to check whats coming from the server side
        $("#user_1_image").attr("src","http://domain.com/check.png");
    },
    error: function(jqXHR, exception){
        if (jqXHR.status === 0) {
                alert('Not connect.\n Verify Network.');
            } else if (jqXHR.status == 404) {
                alert('Requested page not found. [404]');
            } else if (jqXHR.status == 500) {
                alert('Internal Server Error [500].');
            } else if (exception === 'parsererror') {
                alert('Requested JSON parse failed.');
            } else if (exception === 'timeout') {
                alert('Time out error.');
            } else if (exception === 'abort') {
                alert('Ajax request aborted.');
            } else {
                alert('Uncaught Error.\n' + jqXHR.responseText);
            }
  }
}); 
});

在 php 文件中

<?php echo json_encode($_POST); ?>
于 2012-12-18T11:11:56.123 回答
0

请使用它,可能是引号造成问题,所以试试吧。

$.ajax({
url: '/URL',
type: 'POST',
dataType: 'json',
data: { action: 'assoc_users', username: 'testuser', name: 'testname' },
success: function(){
$('#user_1_image').attr('src','http://domain.com/check.png');
},
error: function(){
$('#user1_status').html('x');
}
});
于 2012-12-18T11:21:09.510 回答