我正在使用angularjs的$ http服務將數據發佈到我的API。它的偉大工程..直到我添加和(例如JSONRequest)等號數據的內容
var request = {
'method': 'POST',
'url': API_URL + apiActionName,
'data': JSONRequest,
'withCredentials': true,
};
$http(request).
success(function(data, status, headers, config) {
// handle success
}).
error(function(data, status, headers, config) {
// handle error
}
這個工程的數據包含以下JSONRequest
{
'text':'this is some text'
}
然而,當數據包含此
{
'text':'this is = some text'
}
該請求被轉義並且服務器無法對POST做任何事情!它似乎與所有其他角色一起工作。
任何幫助將不勝感激!謝謝
這很奇怪。試試雙引號也許吧? –