我正在尝试grails中的withFormat关闭。我的 Action 如下:

    if (myInstance.save(flush: true)) {
            withFormat {
                html {redirect(action: "list") }
                js {render "alert('came here')"}
            }

    }

据我了解withFormat闭包:如果ACCEPT header 是text/javascript,那么它将仅呈现警报,如果它是['text/html','application/xhtml+xml'],则将重定向到list操作。但是,就我而言,它始终呈现list操作。

我在Chrome中使用REST控制台,这是我的请求 header 的详细信息:
Accept: text/javascript
Content-Type: application/json
Connection: keep-alive
Origin: chrome-extension: //rest-console-id
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31

这是响应头:
Status Code: 200
Date: Fri, 10 May 2013 14:45:18 GMT
Server: Apache-Coyote/1.1
Transfer-Encoding: chunked
Content-Language: en-US
Content-Type: text/html;charset=UTF-8

响应主体总是以HTML形式返回,而我期望JS
MIME类型在config.groovy中似乎也正确
grails.mime.types = [
    all:           '*/*',
    atom:          'application/atom+xml',
    css:           'text/css',
    csv:           'text/csv',
    form:          'application/x-www-form-urlencoded',
    html:          ['text/html','application/xhtml+xml'],
    js:            'text/javascript',
    json:          ['application/json', 'text/json'],
    multipartForm: 'multipart/form-data',
    rss:           'application/rss+xml',
    text:          'text/plain',
    xml:           ['text/xml', 'application/xml']
]

我在这里做错什么了?

经过一些测试,我发现以闭包为先。如果我有:
        withFormat {
            js {render "alert('came here')"}
            html {redirect(action: "list") }
        }

那么即使我从浏览器测试应用程序,也总是呈现JS ...

最佳答案

grails.mime.use.accept.header = true中需要Config.groovy设置。你有这个吗?

请参阅withFormat页面的底部。

10-06 04:41