Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在模式中的一个 RTF 字段中添加了一些 xsl 格式化功能。
我在其中使用了以下代码段。对于任何错误,我需要停止组件保存并向用户显示一些自定义消息。
<xsl:message terminate="yes"> <xsl:value-of select="'Some error message'"/> </xsl:message>
它停止组件保存,但不显示消息。
任何人都可以让我知道是否有更好的方法。
提前致谢。
此处的 XSLT 模板不能用于显示消息,只能用于转换内容。
如果您想向用户显示错误消息,我建议您查看以下 2 个博客:
在保存时验证内容 - 第 1 部分
在保存时验证内容 - 第 2 部分