我已经使用grails几周了,在使用g:formRemote标记时遇到了这个问题。
org.grails.taglib.GrailsTagException: [views/inventoryDetails/details.gsp:21] [views/inventoryDetails/details.gsp:21] Tag [formRemote] does not exist. No tag library found for namespace: g
供参考的是.gsp页面
<html>
<head>
<meta name="layout" content="bccmain" />
<title>Details - BCC Virtual Map and Inventory Tracker</title>
<g:javascript library="jquery" />
<link rel="stylesheet" href="${resource(dir: 'css', file: 'details.css')}" type="text/css">
<script>
$(document).ready(function () {
$("#database").addClass("active");
});
</script>
</head>
<body>
<div id ="content">
<g:formRemote name = "detailsUpdateForm" url = "[controller: 'InventoryDetails',action: 'ajaxUpdate']" update="updateBox">
<g:each in ="${details}" var = "d" status = "i">
<g:textField name="details" value = "${d.details}" class = "detailsblock"/>
<g:hiddenField name ="id" value = "${d.id}" />
<g:submitButton name = "submit" value = "Save" />
</g:each>
</g:formRemote>
<div id = "updateBox"></div>
</div>
</body>
</html>
我一辈子都无法弄清楚为什么g:formRemote标记会引起问题,但是其他标记(在不同的页面上运行-该页面不会呈现)会像g:each一样正常运行。谢谢。
最佳答案
您很有可能正在使用的Grails版本不再支持"g:formRemote"
。已弃用formRemote
标签和其他Ajax
相关标签。您可能想考虑其他方法。
关于ajax - Grails formRemote标记错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35087897/