使用 Nokogiri 查找并替换整个 HTML 节点
我有一个 HTML,应该对其进行转换,将一些标签替换为另一个标签。
我不知道这些标签,因为它们来自 db。所以,Nokogiri 的 set_attribute
或 name
方法不适合我。
我需要以某种方式做到这一点,就像在这个伪代码中一样:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
Like that: