使用 Nokogiri 查找并替换整个 HTML 节点

发布于 2024-09-13 16:33:35 字数 654 浏览 3 评论 0原文

我有一个 HTML,应该对其进行转换,将一些标签替换为另一个标签。

我不知道这些标签,因为它们来自 db。所以,Nokogiri 的 set_attributename 方法不适合我。

我需要以某种方式做到这一点,就像在这个伪代码中一样:

def preprocess_content
  doc = Nokogiri::HTML( self.content )
  doc.css("div.to-replace").each do |div|
    # "get_html_text" will obtain HTML from db. It can be anything, even another tags, tag groups etc.
    div.replace self.get_html_text
  end
  self.content = doc.css("body").first.inner_html
end

我找到了 Nokogiri::XML::Node::replace 方法。我认为,这是正确的方向。

此方法需要一些 node_or_tags 参数。

我应该使用哪种方法从文本创建一个新节点并用它替换当前节点?

i have an HTML, that should be transformed, having some tags replaced with another tags.

I don't know about these tags, because they will come from db. So, set_attribute or name methods of Nokogiri are not suitable for me.

I need to do it, in a way, like in this pseudo-code:

def preprocess_content
  doc = Nokogiri::HTML( self.content )
  doc.css("div.to-replace").each do |div|
    # "get_html_text" will obtain HTML from db. It can be anything, even another tags, tag groups etc.
    div.replace self.get_html_text
  end
  self.content = doc.css("body").first.inner_html
end

I found Nokogiri::XML::Node::replace method. I think, it is the right direction.

This method expects some node_or_tags parameter.

Which method should i use to create a new Node from text and replace the current one with it?

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

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

发布评论

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

评论(1

沫尐诺 2024-09-20 16:33:35

像这样:

doc.css("div.to-replace").each do |div|
    new_node = doc.create_element "span"
    new_node.inner_html = self.get_html_text
    div.replace new_node
end

Like that:

doc.css("div.to-replace").each do |div|
    new_node = doc.create_element "span"
    new_node.inner_html = self.get_html_text
    div.replace new_node
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文