yaml.jsYAML 1.2 解析和编码器
yaml.js 是一个独立的 JavaScript 的 YAML 1.2 解析和编码器。支持 Node 和主流浏览器,同时提供命令行下的 YAML/JSON 转换工具。
使用方法:
导入 yaml.js
<script type="text/javascript" src="yaml.js"></script>
解析 yaml 字符串:
nativeObject = YAML.parse(yamlString);
对象转成 yaml 字符串
yamlString = YAML.stringify(nativeObject[, inline /* @integer depth to start using inline notation at */[, spaces /* @integer number of spaces to use for indentation */] ]);
加载 yaml 文件
nativeObject = YAML.load('file.yml');
加载 yaml 文件
YAML.load('file.yml', function(result){ nativeObject = result; });
评论