最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - How to Read Value with Backslashes in json or javascript or jquery - Stack Overflow

programmeradmin3浏览0评论

I need to transfer value/s (Windows path) to json using jQuery Ajax so that the value will be thrown or decoded to PHP script, but it can't read value/s with backslashes in json. It must be transferred to json value with the whole path with backslashes in it.

My Sample Codes:

/*==========================================================================*/


var file_name = "C:\WINDOWS\Temp\phpABD.tmp";

var jsonSearchContent = "{\"file_name\":\""+file_name+"\"}";


            $.ajax({
                type:"POST",
                dataType: "html",
                url: url,
                data: {sendValue:jsonSearchContent},
                plete: function (upload) {
                    alert(upload.responseText);
                }
            }
            );
/*==========================================================================*/

Thanks in advance.

I need to transfer value/s (Windows path) to json using jQuery Ajax so that the value will be thrown or decoded to PHP script, but it can't read value/s with backslashes in json. It must be transferred to json value with the whole path with backslashes in it.

My Sample Codes:

/*==========================================================================*/


var file_name = "C:\WINDOWS\Temp\phpABD.tmp";

var jsonSearchContent = "{\"file_name\":\""+file_name+"\"}";


            $.ajax({
                type:"POST",
                dataType: "html",
                url: url,
                data: {sendValue:jsonSearchContent},
                plete: function (upload) {
                    alert(upload.responseText);
                }
            }
            );
/*==========================================================================*/

Thanks in advance.

Share Improve this question edited Oct 8, 2012 at 3:53 coolguy 7,9549 gold badges47 silver badges72 bronze badges asked Oct 8, 2012 at 3:52 Kompyuter EndyinirKompyuter Endyinir 412 silver badges5 bronze badges 1
  • What's the error/problem you're running into? – Nightfirecat Commented Oct 8, 2012 at 3:56
Add a ment  | 

2 Answers 2

Reset to default 5

Escape it.

var file_name = "C:\\WINDOWS\\Temp\\phpABD.tmp";

By the way, you don't need to use json format to send to php, just send the value directly and not necessary to do json_decode in php side.

data: {file_name: file_name},

The backslash character in javascript is used to escape special characters like tabs, carriage returns, etc. In a javascript string, if you want to represent an actual backslash character, use '\\' and it will be treated as a single backslash. Try this:

$.ajax({
    type:"POST",
    dataType: "html",
    url: url,
    data: {
        sendValue: {
            file_name: "C:\\WINDOWS\\Temp\\phpABD.tmp"
        }
    },
    plete: function (upload) {
        alert(upload.responseText);
    }
});

Here's the w3schools page on javascript strings.

发布评论

评论列表(0)

  1. 暂无评论