dsf4354353452 2018-09-01 12:38
浏览 36
已采纳

JQuery成功导致 字符

I have these characters in my results.
The same code works fine on another page.

This is my PHP:

// Insert Data $queryData = $db->prepare("INSERT INTO tbl_Category (Status, Parent, Name) VALUES (?, ?, ?)");

$insertData = $queryData->execute (
    array (
        $Status,
        $Parent,
        $Name,
    )
);

if(insertData) { echo "success"; } else { echo "error"; }

This is my JQuery:

$.ajax({
    type:'POST',
    url:"ajax/Category.php?ajaxPost=newCategory",
    data:$('form#frmAction').serialize(),
    success: function(result){
        if(result == "success")
        {
            alert("ok ");
        }
        else if(result == "error")
        {

        alert("püff");
        }
    }
});

This is what the Firefox Debugger shows

And my result is:

result = "success
" 

展开全部

  • 写回答

2条回答 默认 最新

  • dousi7919 2018-09-01 12:56
    关注

    refer to the end of the string characters. Interacting between JavaScript and PHP using ajax is usually implemented using json, which is a data format supported widely by all programming languages.

    You may refactor your code as follows. The die() function is used to ensure no extra output is printed by the PHP script, since this would result in invalid json syntax.

    category.php

    if($insertData) { 
        die(json_encode(['result' => true])); 
    } else { 
        die(json_encode(['result' => false, 'errorMessage' => 'Optional error message goes here.'])); 
    }
    

    jQuery

    Note: I have used the $.post() function, this is a shorthand for $.ajax(type: 'POST').

    $.post('ajax/Category.php?ajaxPost=newCategory', $('form#frmAction').serialize(), function(r) {
        if(r.result) {
            alert("OK");
        } else {
            alert("Something went wrong: " + r.errorMessage);
        }
    }, 'json');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部