只是想知道是否有更好更简单的方法使用underscoreJS将对象转换为对象数组。以下是我的尝试。
http://jsfiddle.net/tomalex0/VGc9E/
```
var newArr = []
_.each(toBeUpdated, function(value, key) {
var newObj = {};
newObj.field = key;
newObj.fieldstatus = value;
newArr.push(newObj);
});
console.log(newArr);
```