json – 如何在grails应用程序中使用API

前端之家收集整理的这篇文章主要介绍了json – 如何在grails应用程序中使用API前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个服务运行在这个url:http:// localhost:8888

我通过调用它得到这个服务的结果:

http://localhost:8888/colors?colorname=red&shade=dark

我得到的JSON结果如下:

{
      "request#": 55,"colorname": "red","shade": "dark","available": "No"
 }

在我的Grails应用程序中可以使用哪种方式来使用这项服务?

解决方法

假设所有的配置都在 rest client builder,那么你最终会得到2
将服务行代码作为:
//controller/service/POGO
def resp = rest.get("http://localhost:8888/colors?colorname=red&shade=dark")
resp.json //would give the response JSON

哪里

//resources.groovy
beans = {
    rest(grails.plugins.rest.client.RestBuilder)
}
原文链接:https://www.f2er.com/js/152712.html

猜你在找的JavaScript相关文章