{{o.content | formatHtml}}
{{o.author.name}}
{{o.pubDate | formatDate}}
{{parseInt(o.viewCount) | bigNumberTransform}}
Powerjson 是由 JSON 改进而成的数据交换格式,它将 JSON 支持了部分 JavaScript 语法,使其更加高效可用,并且解决了许多 JSON 历史遗留下来的问题。 它支持 单引号字符串, 多行字符串, 注释, 运算符, 导入文件, 导入其它 PJSON 文件 等。 Simple Demo { // 字符串 helloText: 'hello world', MultiLineText: ` Welcome to PowerJSON! `, // 文件和导入 myFile: new File('./file.txt'), importPJSONFile: new PJSON('./index2...