我将 UrlMappings 中页面的映射更改为以下值:
name producingCountry: "${adminArea}/producing-country/$id" (controller: "producingCountry", view: "/producingCountry/show") {
constraints { id(matches: /\d+/) }
}
页面(/productionCountry/show)很简单:
<%@ page contentType="text/html;charset=UTF-8" %>
<html>
<head>
<meta name="layout" content="main">
<title><g:message code="producingCountry.show.title"/></title>
</head>
<body>
</body>
</html>
该消息不再呈现。当它的 url 映射到最后一行的控制器方法“show”时,它运行良好,例如:
render [producingCountry: (country)]
我该如何解决这个问题?