使用JSON重新启动POST

前端之家收集整理的这篇文章主要介绍了使用JSON重新启动POST前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何实现接受 JSON文章的Restlet函数
我如何使用curl测试这个?

谢谢

解决方法

使用Restlet 2,您可以:

>测试@Post acceptRepresentation(表示实体)中的实体媒体类型兼容性:

@Post
public Representation acceptRepresentation(Representation entity)
        throws ResourceException {
    if (entity.getMediaType().isCompatible(MediaType.APPLICATION_JSON)) {
       // ...
    }
    // ...
}

>或使用@Post与一个或两个参数:

@Post("json") Representation acceptAndReturnJson(Representation entity) {
    // ...
}

请看这些链接

> http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2585586
> http://www.restlet.org/documentation/2.0/jse/api/org/restlet/resource/Post.html

(使用Restlet 1,您需要测试实体的类型.)

原文链接:https://www.f2er.com/js/151976.html

猜你在找的JavaScript相关文章