我有一个学生表格,表格内有位置,当我运行应用程序并显示表格时,它看起来像这样
地点 : Jl Excel Road Ring No.36 SINGAPORE, 10110
但我想像这样在两行中定位
Location : Jl Excel Road Ring No.36
SINGAPORE, 10110
这是gsp
<td><g:message code="location.label"/></td>
<td>${studentInstance.location}</td>
这是def show中的服务
def loc = Location.findByTidAndDeleteFlag(params.tid, "N")
if(loc != null){
studentInstance.location = loc.address1 + " " + loc.city + ", " + loc.zipCode
}
else{
studentInstance.location = ""
}