coffee脚本 - 在json数据中使用参数变量

时间:2015-01-22 00:06:02

标签: json coffeescript

我有咖啡脚本功能

postData: (pattern) ->
  myData =
    a: "a string"
    pattern: 0
    f: false

评估为

{
  "a": "a string",
  "pattern": 0,
  "f": false
}    

这不是我想要的。我希望pattern成为我传入的字符串

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

postData: (pattern) ->
  myData =
    a: "a string"
    f: false
  myData[pattern] = 0
  return myData

看到它正常工作here