电子邮件 URL 在刷新网页时恢复为文本
Email URL reverts to text on refresh of webpage
我有一个 Domino 表单,它有一个计算的 RTF,它使用 @DbLookup 从字段中提取文本。文本包含用 <a </a>
方括号括起来的电子邮件地址。当页面加载时,电子邮件地址会按预期显示。当用户单击运行代理以刷新后续字段的搜索按钮时,它会将电子邮件地址替换为包含 <a </a>
.
的确切文本
文本(在字段中标记为传递 HTML)是:
Below are the groups that you have authority to administer. Please select one. If you have other groups that you would like to administer online, please email <a href="mailto: EmailAddress@Organization.org.">EmailAddress@Organization.org</a>.
RTF 中提取它的代码是:
@DbLookup("Notes":"NoCache";@DbName;"vwContentForms";"OtherReporting";@ThisName)
当页面首次加载时,它会正确显示。
Below are the groups that you have authority to administer. Please select one. If you have other groups that you would like to administer online, please email EMailAddress@Organization.org.
电子邮件地址标记为 link。
在刷新页面的表单上按下搜索按钮后,它会将文本 email EMailAddress@Organization.org
替换为 <a href="mailto: EMailAddress@Organization.org.">email EmailAddress@Organization.org</a>.
我错过了什么或做错了什么?
在 documentation for @DbLookup 的中途,它说
When you use a fieldName to perform a lookup, the value returned is the value that is actually stored in the field; it may be different from what displays in the view. Domino® can retrieve data from any field in any document displayed in the specified view, but if the field isn't displayed as a view column, Domino® must search the entire document to find the field, which may result in a slower lookup. You cannot retrieve data from a rich text field using @DbLookup.
这可能意味着“在某些情况下它有时会起作用,但有时却不起作用,我们不打算修复它。”
我有一个 Domino 表单,它有一个计算的 RTF,它使用 @DbLookup 从字段中提取文本。文本包含用 <a </a>
方括号括起来的电子邮件地址。当页面加载时,电子邮件地址会按预期显示。当用户单击运行代理以刷新后续字段的搜索按钮时,它会将电子邮件地址替换为包含 <a </a>
.
文本(在字段中标记为传递 HTML)是:
Below are the groups that you have authority to administer. Please select one. If you have other groups that you would like to administer online, please email <a href="mailto: EmailAddress@Organization.org.">EmailAddress@Organization.org</a>.
RTF 中提取它的代码是:
@DbLookup("Notes":"NoCache";@DbName;"vwContentForms";"OtherReporting";@ThisName)
当页面首次加载时,它会正确显示。
Below are the groups that you have authority to administer. Please select one. If you have other groups that you would like to administer online, please email EMailAddress@Organization.org.
电子邮件地址标记为 link。
在刷新页面的表单上按下搜索按钮后,它会将文本 email EMailAddress@Organization.org
替换为 <a href="mailto: EMailAddress@Organization.org.">email EmailAddress@Organization.org</a>.
我错过了什么或做错了什么?
在 documentation for @DbLookup 的中途,它说
When you use a fieldName to perform a lookup, the value returned is the value that is actually stored in the field; it may be different from what displays in the view. Domino® can retrieve data from any field in any document displayed in the specified view, but if the field isn't displayed as a view column, Domino® must search the entire document to find the field, which may result in a slower lookup. You cannot retrieve data from a rich text field using @DbLookup.
这可能意味着“在某些情况下它有时会起作用,但有时却不起作用,我们不打算修复它。”