gpt4 book ai didi

json - 没有将 StringIO 隐式转换为 String (TypeError) - ruby

转载 作者:太空宇宙 更新时间:2023-11-03 16:13:35 25 4
gpt4 key购买 nike

我有一个名为 import.rb 的脚本,它将 json 内容从 url 导入到 jekyll 的 drafts 目录中。下面是我的代码。

require 'fileutils'
require 'json'
require 'open-uri'

# Load JSON data from source
# (Assuming the data source is a json file on your file system)
data = JSON.parse(open('https://script.google.com/macros/s/AKfycbyHFt1Yz96q91-D6eP4uWtRCcF_lzG2WM-sjrpZIr3s02HrICBQ/exec'))

# Proceed to create post files if the value array is not empty
array = data["user"]
if array && !array.empty?
# create the `_drafts` directory if it doesn't exist already
drafts_dir = File.expand_path('./_drafts', __dir__)
FileUtils.mkdir_p(drafts_dir) unless Dir.exist?(drafts_dir)

# iterate through the array and generate draft-files for each entry
# where entry.first will be the "content" and entry.last the "title"
array.each do |entry|
File.open(File.join(drafts_dir, entry.last), 'wb') do |draft|
draft.puts("---\n---\n\n#{entry.first}")
end
end
end

当我运行 ruby _scripts/import.rb 时,我得到类似

的错误
3: from _scripts/import.rb:7:in `<main>'
2: from /usr/lib/ruby/2.5.0/json/common.rb:156:in `parse'
1: from /usr/lib/ruby/2.5.0/json/common.rb:156:in `new'
/usr/lib/ruby/2.5.0/json/common.rb:156:in `initialize': no implicit conversion of StringIO into String (TypeError)

请提出更正意见。

最佳答案

改变这个:

data = JSON.parse(open('https://script.google.com/macros/s/AKfycbyHFt1Yz96q91-D6eP4uWtRCcF_lzG2WM-sjrpZIr3s02HrICBQ/exec'))

对此:

data = JSON.parse(open('https://script.google.com/macros/s/AKfycbyHFt1Yz96q91-D6eP4uWtRCcF_lzG2WM-sjrpZIr3s02HrICBQ/exec').string)

.string 方法 Returns underlying String object .

当你在做的时候,改变这个:

array && !array.empty?

对此:

array&.any?

&.safe navigation operator它简化了检查 nil 和调用对象方法的过程。从样式的角度来看,最好调用 array.any? 而不是 !array.empty?

最后,当使用 FileUtils.mkdir_p 时,您不必包含保护条件 unless Dir.exist?(drafts_dir)。可以安全地调用它,而不必担心它会删除或覆盖现有目录。

关于json - 没有将 StringIO 隐式转换为 String (TypeError) - ruby,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53993965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com