【发布时间】:2014-08-21 08:28:16
【问题描述】:
我正在使用 ckeditor 插件并且有
plugins {
compile ":ckeditor:4.4.1.0"
...
}
在我的 Buildconfig 中。
我已经运行了 refresh-dependencies,并认为我已经准备好使用 ckeditor taglib。我将以下内容添加到我的 gsp 中,就像 ckeditor 的官方集成指南所建议的那样:
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<%@ taglib uri="http://ckeditor.com" prefix="ckeditor" %>
但这给了我错误:“找不到“http://ckeditor.com”的标签库描述符”
在 gsp 文件中使用 jsp 标签时有什么需要注意的吗?或者这里有什么问题?
【问题讨论】:
-
你看过这个页面吗:stefanogualdi.github.io/grails-ckeditor/docs/guide/…?它解释了如何在 Grails 中使用 ckeditor 插件。
-
是的,我已经看到了。但它也不起作用。 “
”给了我“未知标签(ckeditor:resources)。”
标签: jsp grails ckeditor taglib