在 Google Apps 脚本中解析 YAML 文件
我正在尝试解析 Google Apps 脚本中的 YAML 文件。我想使用 Google 表格中 YAML 文件中的信息。
据我了解,底层库是可用的(在脚本中使用应用程序引擎yaml解析器)但我似乎不明白如何使用这个库。
谢谢
I'm trying to parse a YAML file within Google Apps Script. I would like to use the information from a YAML file in Google Sheets.
From what I understood, the underlying library is available (Use app engine yaml parser in scripts) but I don't seem to understand how I can use this library.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这可能取决于你的 yaml 的复杂程度。对于简单的情况,您可以使用此库 https://code.google。 com/archive/p/javascript-yaml-parser/downloads
只需下载并解压最新的 .gz 文件,然后将文件
yaml.js
的内容复制到您的项目中:然后你可以这样将 yaml 字符串转换为 json 对象:
输出:
I suppose it can depend on how complicated is your yaml. For simply cases you can use this lib https://code.google.com/archive/p/javascript-yaml-parser/downloads
Just download and unpack the latest .gz file and copy contents of the file
yaml.js
into your project:Then you can convert your yaml string into a json object this way:
Output: