json对象,函数和数组作为值

时间:2016-03-29 20:56:10

标签: arrays json

嗨我有一个json结构,如下所示,带有一个数组和一个函数作为下面指定的键的值,但是当我验证这个json时我看到错误,请让我知道什么是错的

var cars = {
   "config": [{'id': 'hc_3',
               'title': 'Show Details'
   }],
   "handler": function(id) {
    if(id == 'hc_3') {
        console.log('test')
    }
   }
};

0 个答案:

没有答案