我有一个POST类型的api。在向该API发送JSON主体时,我会得到一些JSON响应。以下是邮递员的截图
现在我正在尝试使用此API调用,我编写了一个简单的HTTP post调用,下面是代码
var itemdata = {
"terms": {
"items": [
{
"_type": "term",
"_id": "6662c0f2.e1b1ec6c.1mdlmv35e.1618tt1.8mb4gb.nahef1pustcmu5k10omdh",
"_url": "https://10.11.13.155:9445/ibm/iis/igc-rest/v1/assets/6662c0f2.e1b1ec6c.1mdlmv35e.1618tt1.8mb4gb.nahef1pustcmu5k10omdh",
"_name": "Export_01"
}
]
}
};
$http({
method: 'POST',
url: posturl,
body : itemdata
})
.success(function (data) {
console.log(data);
})
.error(function (error, status){
console.log(error,status);
});
但问题是我为此得到200,但我没有得到任何回应。以下是浏览器网络标签的屏幕截图
除此之外,我没有看到任何错误或任何回复。这是什么问题?有人可以帮我解决这个问题吗?