场景-我编写了一个api,它使用vertx和内存db模型作为一堆json请求响应api诞生。效果很好。
然后有人想要漂亮的HTML显示以查看该应用程序中的某些内容。
所以我创建了一个grails应用程序来尝试为我做简单的脚手架视图-但是,当然,它本身没有域模型。
我创建了一个remoteRequestController-调用一个服务,该服务在我的“核心应用”上执行json并将数据转换为对象。
因此对于我的列表请求-我执行GET并获取一个json数组。我将其转换为本地“非域”对象的列表,并在结果对象中构建图
我的服务将列表返回给我的控制器-后者会尝试将地图显示为视图。
我尝试遵循grails约定-我的Controller称为'RemoteServiceRequestController',它调用RemoteServiceRequestService(执行远程获取/响应,并格式化为对象)-并且该视图使用'remoteServiceRequest / list'像这样的变量'remoteServiceRequestList'
在那个gsp中,我引用了模型映射'remoteServiceRequestList'中的一个项目
<!DOCTYPE html>
<html>
<head>
<meta name="layout" content="main" />
<g:set var="entityName" value="${message(code: 'request.label', default: 'ServiceRequest')}" />
<title><g:message code="default.list.label" args="[entityName]" /></title>
</head>
<body>
<a href="#list-customer" class="skip" tabindex="-1"><g:message code="default.link.skip.label" default="Skip to content…"/></a>
<div class="nav" role="navigation">
<ul>
<li><a class="home" href="${createLink(uri: '/')}"><g:message code="default.home.label"/></a></li>
<li><g:link class="create" action="create"><g:message code="default.new.label" args="[entityName]" /></g:link></li>
</ul>
</div>
<div id="list-request" class="content scaffold-list" role="main">
<h1><g:message code="default.list.label" args="[entityName]" /></h1>
<g:if test="${flash.message}">
<div class="message" role="status">${flash.message}</div>
</g:if>
<p> "got map as ${params}: and" + "list as ${remoteServiceRequestCount}"</p>
<f:table collection="${remoteServiceRequestList}" />
<div class="pagination">
<g:paginate total="${remoteServiceRequestCount ?: 0}" />
</div>
</div>
</body>
</html>
在我的控制器中,我尝试做出这样的响应
def list () {
....
List<Request> rlist = remoteRequestService.bindJsonToServiceRequestList(json)
//return either an empty list or result of query, view will convert list to
println "remote list returned $rlist, size :${rlist.size()}"
//response rlist, [model: [remoteServiceRequestCount: rlist.size()] ]
//Map model = [remoteServiceRequestList: rlist, remoteServiceRequestCount: rlist.size()]
Map model = ["remoteServiceRequestList": ["will","marian"]]
//render (view:'list', model:model )
//response rlist, [model: [remoteServiceRequestInstanceCount: rlist.size(), remoteServiceRequestInstanceList: rlist]]
ModelAndView mv = new ModelAndView()
mv.addAllObjects(model)
mv
}
正如您从评论中看到的,尝试了几种无效的方法。该视图不会将响应呈现为HTML,因为我认为该视图会自动假定变量是域对象列表。列表构建良好,我得到了我期望的值-但我构建的对象数组仅来自src / main / groovy
中的类我似乎无法在GSP视图中访问模型映射变量(除非它们是域对象),这不是我在这里所需要的。
响应方法非常顽皮,它会尝试在内部巧妙地查看类型和内容-并在特定名称的映射中构建变量(逻辑上类似于List-我尝试使用远程结果列表,但我无法获取它以在GSP视图中呈现数据
问题我可以使用GSP渲染模型映射中保存的变量的HTML,其中数据对象不是bean(例如我的请求数组),如果是的话,我该怎么做? (我可以将对象放入Bean中,但不确定是否有帮助)
否则,我将不得不进行一些可怕的原始html处理,而仅使用render将其返回给浏览器-而不是使用GSP管道为我完成大部分艰苦的工作。
我希望这将是直截了当的,并且变成了与框架争执的噩梦
在陷入沮丧和无法正常工作的代码之前,需要提供建议-
我并不是一个真正的HTML演示天才(这就是为什么脚手架本来就足够好)的原因-但由于无法在gsp视图中呈现来自地图数据的响应而陷入困境。
赞赏任何关于如何使之工作的想法-或者如果我可以让脚手架工作的话,那将是一个足够好的选择。
答案 0 :(得分:0)
问题我可以使用GSP为模型中保存的变量呈现HTML吗? 映射数据对象不是bean的地方(例如我的数组 请求),如果可以的话,我该怎么做?
是的
https://github.com/jeffbrown/williamwoodmansample上的项目显示了一个非常简单的示例。
package williamwoodmansample
class WoodmanDemoController {
def index() {
[remoteServiceRequestList: ['will', 'marian']]
}
}
https://github.com/jeffbrown/williamwoodmansample/blob/master/grails-app/views/woodmanDemo/index.gsp
<html>
<head>
<meta name="layout" content="main"/>
</head>
<body>
<h1>Names</h1>
<ul>
<g:each var="name" in="${remoteServiceRequestList}">
<li>${name}</li>
</g:each>
</ul>
</body>
</html>