nokogiri_bang_finders:将 XML 查找器添加到 Nokogiri,如果未找到任何内容则引发

时间:2024-07-08 00:25:42
【文件属性】:

文件名称:nokogiri_bang_finders:将 XML 查找器添加到 Nokogiri,如果未找到任何内容则引发

文件大小:7KB

文件格式:ZIP

更新时间:2024-07-08 00:25:42

Ruby

nokogiri_bang_finders 这颗宝石说“Nokogiri,如果你找不到我想要的 XML,请大喊大叫。” 例如: doc = Nokogiri :: XML ( "Alf" ) doc . at ( 'alien' ) . content # => "Alf" # without nokogiri_bang_finders doc . at ( 'robot' ) . content # NoMethodError: undefined method `content' for nil:nilclass # with nokogiri_bang_finders doc . at! ( 'robot' ) . content # Nokogiri::XML


【文件预览】:
nokogiri_bang_finders-master
----.gitignore(154B)
----.rspec(41B)
----CHANGELOG.md(604B)
----LICENSE.txt(1KB)
----spec()
--------nokogiri_bang_finders_spec.rb(4KB)
--------spec_helper.rb(632B)
----README.md(2KB)
----nokogiri_bang_finders.gemspec(1KB)
----lib()
--------nokogiri_bang_finders()
--------nokogiri_bang_finders.rb(1KB)
----Gemfile(106B)
----Rakefile(117B)

网友评论