我正在使用 angular (1.0.8) 提交有效负载,但它没有提交我所有的 json。这是我将问题归结为 angular.toJson() 的地方。
angular.toJson(
{"yt$location": {
"$t": "US"
}
});
// "{"yt$location":{}}"
// I would like it should return
// "{"yt$location":{ "$t": "US" }}"
JSON.stringify({"yt$location": {
"$t": "US"
}});
// "{"yt$location":{"$t":"US"}}"
angular.toJson({"$t":"what"}); // "{}"