我试图使用$ http发送一个嵌套的json对象,继承人json对象我在谈论{" name":" toto",categori {" name&# 34;:"蒂蒂":"代码":" 1455"}} 这是一个例子,任何人都可以告诉我该怎么做!
答案 0 :(得分:0)
JSON值可以是数组,对象或基元(数字或字符串)。
{
"name": "toto",
"categories": [
{"name": "titi": "codes": "1455"},
{"name": "tata": "codes": "1456"} //If more categories
]
}
var req = {
method: 'POST',
url: 'http://example.com',
headers: {
'Content-Type': undefined
},
data: {
test: 'test'
}
}
$http(req).then(function() {
..
}, function() {
..
});
在数据中我们将发送JSON数据