在嵌套对象上使用 JSON.stringify() 的正确方法是什么?我从需要 JSON 字符串的 api 调用中收到错误请求:
testData = {"credentials": {"user": "test@email.com", "password": "testpassword", "country": "us"}};
当我查看 postDasta 时:
"{"credentials": {"user": "test@email.com", "password": "testpassword", "country": "us"}}";
$.ajax({
...
data: JSON.stringify(testData),
...
});
谢谢,
Ĵ