作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从响应数组中获取对象数组值?下面是我发送 Ajax 请求的代码
var post_data = {
"user_name_title" : $scope.user_name_title,
};
$http.post(url,post_data).then(function(res)
{
console.log(res['Message']);
},
输出为
{
"ResponseCode": 200,
"Data": [],
"Message": "Data inserted successfully.",
"Error": []
}
如何获取结果对象,我已经使用了
console.log(res['Message']);
但它显示未定义。我应该使用什么?
最佳答案
当您在 $http
方法上使用 .then
时,您应该在响应对象的 data
属性中获取 API 响应数据,如下所示.
console.log(res.data['Message']);
关于javascript - 如何从响应数组中获取对象数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37544221/
我是一名优秀的程序员,十分优秀!