如何使用POSTMAN检查$ http.post()查询结果

时间:2014-10-01 11:47:24

标签: angularjs rest-client postman

我有$ http.post请求,它运行正常。

$http.post("api/orders/", $scope.order).success(function(data) {

}

其中

$scope.order = {
            "order_id": "14",
            "user_id": "10",
            "amount":"400"

        };

如何使用邮递员检查相同的请求?

1 个答案:

答案 0 :(得分:1)

如果您在本地运行该服务,请将网址设置为:

http://localhost/api/orders

如果它未在本地运行,请将localhost更改为您的服务器名称

然后将方法设置为POST

点击"表格数据"允许您提交键值对

然后根据scope.order对象输入您的键和值