- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个名为 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/
我正在使用 python 的 csv.DictReader 但我正在用这样的字符串初始化它: dict_reader = csv.DictReader(StringIO.StringIO(some_s
我已经用谷歌搜索并在 SO 上搜索这些缓冲区模块之间的区别。不过,我还是不是很明白,我觉得我看的一些帖子已经过时了。 在 Python 2.7.11 中,我使用 r = requests.get(ur
在我的模型中,我想通过覆盖保存方法来格式化图像字段 我在我的模型中做到了这一点 from PIL import Image as Img from io import StringIO from dj
我正在使用 Boost 的序列化库序列化大量数据以通过网络发送。 Boost 的序列化库需要一个中间文件来进行序列化和反序列化。传输的数据量使得执行所有这些操作变得很尴尬。将事情保存在内存中会好得多。
StringIO 是我们在从文本中读取 Pandas 数据帧时使用的类似文件的字符串缓冲区对象,例如"How to create a Pandas DataFrame from a string?"
我在使用这两个类时得到了不同的结果。 In [15]: StringIO.StringIO().write(u'\u2222') In [16]: cStringIO.StringIO().write
所以,我关注了this question为了得到一些声音播放 Music21 ,这是代码: from music21 import * import random def main(): # Set
显然,我是 Python 的新手。 我想在下面的代码中使用 StringIO :提取 example.xml import os os.chdir('d:/py/xml/') from lxml i
我只是无法让 StreamHandler 与 StringIO 一起工作以接受来自进程的日志记录。奇怪的是,到 stdout 的流工作得很好。 这是我的代码: from time import sle
我们正在使用一些我们没有源代码的编译Python代码。该代码提示用户输入,我们正在尝试自动化该部分。 基本上要求输入用户名、密码,然后根据特定情况询问一些不同的问题。我不知道编译后的函数是使用raw_
我正在使用以下代码在线检索图像: import Image import urllib2 import cStringIO url = 'http://storage.googleapis.com/b
尝试[ see it running here ]: from sys import stdout, stderr from cStringIO import StringIO from loggin
我在使用 Ruby 的 StringIO 类时观察到一些非常奇怪的行为。 在 irb 控制台中输入以下内容: 2.3.0 :002 > original_string = 'test' => "te
如何在 StringIO 中用另一个字符串替换字符串? - 我听说如果它们的长度相同是可能的。 尝试: from cStringIO import StringIO c = 'can\nhaz\nfo
我似乎得到了不同的输出: from StringIO import * file = open('1.bmp', 'r') print file.read(), '\n' print StringIO
在 Python 中,我有一个文件流,我想将它的一部分复制到 StringIO 中。我希望它尽可能快,副本最少。 但如果我这样做: data = file.read(SIZE) stream = St
我正在寻找一些 StringIO -类似的类,它允许我从我的程序的不同部分同时写入和读取。 从程序的一部分我想将字符写入(追加)到缓冲区,从另一部分我想读取它们。 StringIO 的问题如下: bu
我有 python 3.6。我想从另一个名为“run.py”的 python 文件执行名为“operation.py”的 python 文件。 在 operation.py 中,我执行 from cS
我刚刚开始使用 Django 和 Python,正在尝试构建一个照片应用程序。该脚本正在生成缩略图,我想自己做。不幸的是我不明白 StringIO() 正在做什么。在这种情况下,Python 文档对我
我正在尝试使用将 rml 转换为 pdf, import cStringIO buf = cStringIO.StringIO() rml2pdf.go(rml, outputFileName=buf
我是一名优秀的程序员,十分优秀!