XSLT 中文字结果元素的浅拷贝是什么?

发布于 2024-11-14 21:37:43 字数 411 浏览 4 评论 0原文

关于:

文字结果元素充当 构造元素的指令 结果中同名的节点 树。 XSLT 处理器有效地 创建文字的浅表副本 样式表中的结果元素和 将其插入到结果树中的 结果树中的位置 目前正在建设中。

来源:http://lenzconsulting.com/how-xslt-works/#literal_result_elements

我想知道他说 XSLT 处理器有效地创建了文字结果元素的浅表副本 是什么意思?

在这种情况下,浅拷贝是什么意思?

regarding:

A literal result element acts as an
instruction to construct an element
node with the same name in the result
tree. The XSLT processor effectively
creates a shallow copy of the literal
result element from the stylesheet and
inserts it into the result tree at the
location within the result tree that
is currently being constructed.

Source: http://lenzconsulting.com/how-xslt-works/#literal_result_elements

I'm wondering what does he mean when he say The XSLT processor effectively creates a shallow copy of the literal result element ?

What's a shallow copy mean in this context?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知所踪 2024-11-21 21:37:43

我想知道他是什么意思
他说XSLT 处理器有效
创建文字的浅表副本
结果元素

这里的浅拷贝是什么意思
上下文?

W3C XSLT 规范,这是唯一的规范性文档规范XSLT 语言的不使用术语“浅复制”

我的猜测此问题中引用的材料想要说明的内容,如以下示例所示:

 <h1>
   <xsl:value-of select="."/>
 </h1>

在输出中,元素 不会被复制。 “浅复制”不复制任何子节点。

再次强调,最好忘记字面redult元素的“浅层复制”,而只依赖规范规范。

I'm wondering what does he mean when
he sayThe XSLT processor effectively
creates a shallow copy of the literal
result element
?

What's a shallow copy mean in this
context?

The W3C XSLT specification, which is the only normative document specification of the XSLT language doesn't use the term "shallow copy"

My guess what the material referenced in this question wanted to state, is illustrated by this example:

 <h1>
   <xsl:value-of select="."/>
 </h1>

In the output, the element <xsl:value-of select="."/> isn't copied. A "shallow copy" does not copy any children nodes.

Once again, it is best to forget about "shallow copying" of the literal redult element and to rely only on the normative specification.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文