过去多啦不再A梦2017-05-16 13:34:36
原因是判断用的 obj 的每个属性都被计算了一次,可以加条件阻塞改进:
var convert = function(obj) {
return obj.map(o => ({
'number': o.type === 'number ' && 1,
'string': o.type === 'string ' && 's',
'array': o.type === 'array ' && convert(o.children)
}[o.type]))
}
当要判断的条件少的时候可以用多个三目条件判断,太多这样的判断,这种写法要美观一点,接受不了的可能只能写 if else 了。
習慣沉默2017-05-16 13:34:36
报错是第一个的时候没有children
var convert = function(obj) {
return obj.map(o => ({
'number': 1,
'string': 's',
'array': o.children?convert(o.children):""//假设没有的时候返回空咯
}[o.type]))
}