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
2 Answers
Reset to default 5Escape 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.