Changing href attributes with nokogiri and ruby on rails

前端 未结 2 784
野性不改
野性不改 2021-02-05 09:45

I Have a HTML document with links links, for exemple:


  
   
2条回答
  •  梦谈多话
    2021-02-05 10:28

    Here is what I did for replacing images src attributes:

          doc = Nokogiri::HTML(html)
           doc.xpath("//img").each do |img|
             img.attributes["src"].value = Absolute_asset_path(img.attributes["src"].value)
          end
          doc.to_html                  // simply use .to_html to re-convert to html
    

提交回复
热议问题