我有一个rake任务,可以更改某些页面上的元标记。
desc 'changes the meta tags'
task mixup_meta_tags: :environment do
meta_tags = ['index','noindex','index,nofollow','nofollow,noindex']
new_tag = meta_tags.sample(1)[0]
#
#iterate through html docs
base = 'app/views/site'
pages = ['home','about','products','pricing']
pages.each do |page|
filename = base + '/' + page + '.html.haml'
text = File.read(filename)
current_tag = Nokogiri::HTML(File.open(filename, "r")).xpath("//meta[@name='robots']").first["content"]
File.open(filename, "w") { |file| file << text.gsub(current_tag,new_tag)}
end
end
我收到一条含糊不清的错误信息:
未定义的方法`[]'为nil:NilClass
关于这一行:
current_tag = Nokogiri::HTML(File.open(filename,"r")).xpath("//meta[@name='robots']").first["content"]
这一行应该弄清楚当前标签是什么,以便可以替换它们(通过下一行代码)。
关于这里有什么不合适的建议?
答案 0 :(得分:1)
它说的是
File.open(filename,"r")).xpath("//meta[@name='robots']").first
是nil
或基本上
File.open(filename,"r")).xpath("//meta[@name='robots']").empty? # true