我正在尝试构建一个基于 jQuery 的简单邮件模板系统。它基本上是一个嵌套数组,应该看起来像:
templates[1] = {
"name":"product damage claim",
"def":{
{'Customer Name?','delivery_name',1},
{'Date by which information should be provided by customer?','',1},
{'Order ID','orders_id',0}
},
"tpl":'Mail Content goes here'
};
现在,如果我写上面的内容,javascript 会失败。看来,我在定义对象时做错了def
什么,知道什么吗?