我使用C#發JSON的PHP腳本,像這樣:.NET PostSubmitter發送反斜線
string json = "{";
json += "\"prop\":\"some text\"";
json += "}";
PostSubmitter post = new PostSubmitter();
post.Url = "http://localhost/synch/notein.php";
post.Type = PostSubmitter.PostTypeEnum.Post;
post.PostItems.Add("note", json);
post.Post();
當然我必須逃脫內報價,但他們得到sended到腳本!讓事情變得更糟:有文本,已經有引號,所以這些必須轉義爲有效的JSON。在這種情況下,我想要反斜槓被傳送。任何想法來完成這個?