雖然您仍然可以導航並在瀏覽器中查看頁面,但我有一個用於Ajax目的的Grails控制器操作。如果瀏覽動作,在Grails中重定向用戶
class QuoteController {
def quoteService
/**
* This page uses the ajaxRandom function defined below to display random quotes.
*/
def random = {
def randomQuote = quoteService.getRandomQuote()
[quote:randomQuote]
}
/**
* I do not want this to be a valid page, but maintain its use as a simple Ajax method.
*/
def ajaxRandom = {
def randomQuote = quoteService.getRandomQuote()
response.outputStream << "<q>${randomQuote.content}</q><p>${randomQuote.author}</p>"
}
}
有沒有一種方法,如果有人通過瀏覽器訪問URL,同時在頁面中維護方法的Ajax功能重定向?
這工作完美!你推薦任何資源來獲得更多的技巧和竅門嗎? – 2009-10-23 11:39:38