2

如何将 JSON 转换为 CoffeeScript 并使用 NodeJS 写入文件“.coffee”?

JSON:

{
  "name": "jack",
  "type": 1
}

到 CoffeeScript:

"name": "jack"
"type": 1
4

2 回答 2

2

通过遍历对象 ( ) 应该很容易for … of。只需使用递归并将缩进级别作为参数:

esc_string = (s) ->
  return '"' + s.replace(/[\\"]/g, '\\$1') + '"'

csonify = (obj, indent) ->
  indent = if indent then indent + 1 else 1
  prefix = Array(indent).join "\t"
  return prefix + esc_string obj if typeof obj is 'string'
  return prefix + obj if typeof obj isnt 'object'
  return prefix + '[\n' + (csonify(value, indent) for value in obj).join('\n') + '\n' + prefix + ']' if Array.isArray obj
  return (prefix + esc_string(key) + ':\n' + csonify(value, indent) for key, value of obj).join '\n'

测试用例:

alert csonify
  brother:
    name: "Max"
    age:  11
    toys: [
      "Lego"
      "PSP"
    ]
  sister:
    name: "Ida"
    age:  9

结果:

"brother":
    "name":
        "Max"
    "age":
        11
    "toys":
        [
            "Lego"
            "PSP"
        ]
"sister":
    "name":
        "Ida"
    "age":
        9

没有现场演示,因为我不知道 CoffeScript 的 JSFiddle。

现场演示:http: //jsfiddle.net/vtX​​3p /

于 2013-09-23T15:32:03.407 回答
-4

我希望你知道如何在 nodejs 中读写文件,所以我不会在这里讨论。要将javascript转换为coffeescript,您可以使用这个npm:

https://github.com/rstacruz/js2coffee

于 2013-09-23T15:31:53.633 回答