0
從我的grails控制器類我需要顯示來自GSP文件的錯誤消息。顯示錯誤消息Grails - Bootstrap
def myControllerMethod() {
if (fruit==apple){
// Do something
} else {
Show the error message, from the GSP file.
}
}
在GSP文件中。我有以下代碼,這是我想要顯示5秒鐘的錯誤消息然後它應該消失。
<body>
...
<div class="alert alert-danger" role="alert">
<a href="#" class="alert-link">...</a>
</div>
</body>
我試圖flash.message BU沒有東西顯示出來。 – Illep
我的主要問題是如何從Grails控制器調用DIV? – Illep
我剛剛編輯了我的答案。告訴我,如果這是你需要的 – Abincepto