angularjs – 发送请求Body on $resource

前端之家收集整理的这篇文章主要介绍了angularjs – 发送请求Body on $resource前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看一下 Angular API的$资源,我没有找到一些方法发送一个请求体到RESTful服务。

我知道这是可能使用$ http方法,如here,所以,是否也可以使用$ resource?

显然这是$ resource的选项。

action – {string} – The name of action. This name becomes the name of the method on your resource object.

method – {string} – HTTP request
method. Valid methods are: GET,POST,PUT,DELETE,and JSONP

params
{object=} – Optional set of pre-bound parameters for this action.

isArray – {boolean=} – If true then the returned object for this
action is an array,see returns section.

目前,我没有找到任何方式发送包含JSON对象的请求有效内容

只要操作支持正文消息(例如POST,而不是GET),您就可以将数据参数传递到资源的action方法,该方法将在请求的正文中发送:
yourResource.save(yourData)

示例:http://jsfiddle.net/N3NXK/1/

原文链接:https://www.f2er.com/angularjs/145941.html

猜你在找的Angularjs相关文章