0

我想将请求正文作为 JSON 对象发送到 RESTful 服务

REST API 调用:

GET http://localhost/api/v1/logsearch/query
{'query': {'match_all': {}}}

这是我的 DS.defineResource

return DS.defineResource({
      basePath: '/api/v1',
      endpoint: '/logsearch/query',
      cacheResponse: false,
      maxAge: 0, // cache expires immediately
      name: 'log',
      idAttribute: '_id',

我可以使用 JS 数据将 JSON 对象发送到 GET Request RESTful API 调用的任何示例

我要发送的 JSON 对象是:{'query': {'match_all': {}}}

谢谢你的帮助

4

1 回答 1

0

以角度发布到 api 的对象。

var obj = {'query': {'match_all': {}}};

$http.post('http://localhost/api/v1/logsearch/query', obj)
.then(function(data){//where data is the result returned by your api
  //do something with data returned here
}, function(errors){
  //handle any errors here
}) 
于 2017-05-10T07:32:28.563 回答