使用Grails Controller代理AJAX请求

时间:2012-10-30 16:42:55

标签: ajax grails cross-domain

我有一个Javascript组件,当加载DOM时,它需要向我们的CDN发送请求,可能位于不同的域中,以查看该组件是否有内容。如果有,该组件将自我实例化(它是一个在模态中打开嵌入视频的链接),如果不是,它将自毁。我的问题主要是关于我用来代理AJAX请求的Grails控制器。

这是伪代码中的JS:

checkForVideoAssets: function(videoDataUrl){
    Ajax.get(videoDataUrl, function(data){
    if(data.responseText==='error'){
    //tear down the component
    }
    else{
    //if there is data for the video instantiate the component
    }

这是Grails控制器:

def checkForModalVideoAsset = {
    def req = new URL("http://" + params.videoUrl + "/expense/videos/")
    def connection = req.openConnection()

    if(connection.responseCode != 200){
        render 'error'
    }

    if(connection.responseCode == 200){
        render req.getText()
    }
}

因此,总而言之,JS从DOM中获取一个属性,该属性具有URL的一部分(我们按惯例定义),将该URL发送到控制器,控制器尝试连接到该URL(在我们的CDN上)然后将该响应传递回XHR对象的responseText部分内的AJAX成功回调。这对我来说不太理想,是否可以将实际响应传递回JS函数?

1 个答案:

答案 0 :(得分:1)

httpbuilder可能对您有用

我从未尝试过但类似的东西!?

def checkForModalVideoAsset = {

    def http = new HTTPBuilder("http://" + params.videoUrl )

    http.get( 
          path : "/expense/videos/",
          contentType : TEXT ) { resp, reader -> 
             response.properties=resp.properties //<-- to easy to work but why not try :)
             response << resp
             }
    }