如果只是将内容附加到 RTF 字段,那么使用自定义 URL 会不会少很多工作?
自定义 URL 是您可以在 Schema 字段上设置的链接,它将在组件中显示为该字段标题上的链接。这将打开一个带有指定 URL 的弹出窗口,您可以从那里直接返回该字段(允许您添加或替换现有内容)。
可以在http://docportal.sdl.com/sdltridion上找到有关此主题的文档(直接主题链接)
用于将内容覆盖或附加到文本字段的自定义 URL HTML 页面示例如下所示:
<html>
<head>
<title>Custom URL example</title>
<style>
body {
background:#fafafa;
font-family:arial,helvetica,sans-serif;
font-size:12px;
line-height:1.5em;
}
a {
color:#000;
font-weight:bold;
text-decoration:none;
}
a:hover {
color:#666;
}
</style>
<script type="text/javascript" language="javascript" src="/WebUI/Core/Controls/Popup/PopupInit.js"></script>
<script language="JavaScript">
function overwrite(value) {
var fields = window.dialogArguments.getFields();
if (fields && fields.length > 0) {
if (fields[0].getValues() != null && fields[0].getValues()[0] != null && fields[0].getValues()[0].length > 0) {
if (!confirm('This will overwrite the existing content of the field. Continue?')) {
return;
}
}
fields[0].setValues([value]);
window.close();
}
}
function append(value) {
var fields = window.dialogArguments.getFields();
if (fields && fields.length > 0) {
var current = '';
if (fields[0].getValues() != null && fields[0].getValues()[0] != null && fields[0].getValues()[0].length > 0) {
current = fields[0].getValues()[0];
}
fields[0].setValues([current + value]);
window.close();
}
}
</script>
</head>
<body>
<h1>Make a choise</h1>
<p><a href="javascript:overwrite(' - dummy content - ')">overwrite current value</a></p>
<p><a href="javascript:append(' - dummy content - ')">append to current value</a></p>
</body>
</html>
这是一个 HTML 页面,您应该将其放在 ..\Tridion\web 文件夹中的某个位置(我通常会在其中创建一个 CustomURL 子目录,因此您可以像这样引用它:/CustomUrl/example.html)