gpt4 book ai didi

python - 将评估的 xpath 传递给扩展

转载 作者:太空宇宙 更新时间:2023-11-03 18:59:58 25 4
gpt4 key购买 nike

我正在使用 lxml python 库。

假设我们有产品 xml,例如:

<product id='123' />

并且想要应用xsl模板:

<xsl:template match="product">
<ssi:include virtual="/ssi/reviews/{@id}"/>
</xsl:template>

ssi:include 是一个简单的 lxml 扩展,它将 nginx ssi 指令作为注释插入 HTML 代码中。问题是评估 @id 并将属性传递为 virtual="/ssi/include/123"。有办法吗?我已经找到了解决方案并正在使用它:

import lxml.etree
import re
from copy import deepcopy

ns = '{ssi}'

# ssi extensions
class SsiExtElement(lxml.etree.XSLTExtension):
def execute(self, context, self_node, input_node, output_parent):
_, tag = self_node.tag.split('}')
tmp = lxml.etree.Element('tmp')
for k, v in self_node.attrib.items():
if re.search('\{(.*)\}', v): #here we search {xpath} values to evaluate
elem = deepcopy(input_node)
matches = re.findall('\{(.*)\}', v)
for match in matches:
v = v.replace('{%s}' % match, elem.xpath(match)[0])
tmp.set(k, v)
self.process_children(context, output_parent=tmp)
attrs = ' '.join(u'%s="%s"' % (k, v) for k, v in tmp.attrib.items())
ssi = lxml.etree.Comment(u'#%s %s' % (tag, attrs))
output_parent.append(ssi)
for node in tmp:
output_parent.append(node)
if (self_node.tag.replace(ns,'') in ('if', 'else', 'elif')
and self_node.getnext().tag.replace(ns, '') not in ('else', 'elif')):
output_parent.append(lxml.etree.Comment(u'#endif'))

最佳答案

尝试使用 xsl:attribute

<xsl:template match="product">
<ssi:include>
<xsl:attribute name="virtual">
<xsl:value-of select="concat('/ssi/reviews/',@id)"/>
<xsl:attibute>
</ssi:include>
</xsl:template>

关于python - 将评估的 xpath 传递给扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16280211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com