使用Grape API生成JavaScript?

时间:2013-12-10 23:58:18

标签: ruby grape grape-api

我正在使用Grape框架来检索数据,这很有效。我还想使用API​​检索JavaScript文件。例如:

<!DOCTYPE html>
<html>
    <head>
        <script defer src="http://someapi.com/dni_js/dni.js" > </script>
    </head>
    <body>
    </body>
</html>

http://someapi.com/dni_js/dni.js正在调用API。

实现这一目标的最佳方法是什么?

1 个答案:

答案 0 :(得分:1)

您应该在API中实现对JSONP的支持。

https://github.com/intridea/grape#jsonp