gpt4 book ai didi

grails - 如何在GSP页面中以不同的样式显示不同的flash.message

转载 作者:行者123 更新时间:2023-12-02 15:01:59 26 4
gpt4 key购买 nike

我必须使用flash.message显示不同的消息,其中一些消息必须使用不同的颜色,因此如何在GSP中区分flash.message并以不同的颜色显示它们

最佳答案

查看页面代码以查看错误并以不同的样式获取味精

   <g:if test="${flash.message}">
<div class="message" role="status" style="font-size: medium;color: green;">${flash.message}</div>
</g:if>
<g:if test="${flash.warning}">
<div class="message_error" style="font-size: medium;color: red;">${flash.warning}</div>
</g:if>

Controller 代码以调用相应的标签
如果提示:
flash.message = message(code: 'Applied Successfully', args: [message(code: 'hrIrRegistration.label', default: 'HrIrRegistration'), hrIrAplcJobAppldLkInstance.id])
redirect(controller: "hrIrRegistration", action: "showVcnyForApplcnt", id: params.hrIrVcncyIdHrIrVcncy.id)

如果错误:
flash.warning = message(code: 'You have already Applied in this vacancy', args: [message(code: 'hrIrRegistration.label', default: 'HrIrRegistration'), hrIrAplcJobAppldLkInstance.id])
redirect(controller: "hrIrRegistration", action: "showVcnyForApplcnt", id: params.hrIrVcncyIdHrIrVcncy.id)

关于grails - 如何在GSP页面中以不同的样式显示不同的flash.message,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12813624/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com