Grails,tagLib g:remoteLink 不存在

Grails, tagLib g:remoteLink does not exist

我正在尝试向我的编辑表单添加一个删除按钮,但没有找到任何有用的东西,当我发现 remoteLink 可以帮助我时,我尝试了,但是当将它添加到任何 form/app我总是得到:

"Tag [remoteLink] does not exist. "

我正在使用 Grails-3.2.4。 也许我需要导入一些东西或者..?

remote* 标签已在 Grails 3.x 中弃用和删除。您应该使用 javascript 库进行 AJAX-calls

此标签库和代码已作为外部插件放置。您可以通过添加它 build.gradle 中的附加依赖项:

    compile 'org.grails.plugins:ajax-tags:1.0.0'

插件页面:https://plugins.grails.org/plugin/grails/ajax-tags