これは私がやっている方法です:
var props = { id: 1, name: 'test', children: [] }
//copy props but leave children out
var newProps = { ...props }
delete newProps.children
console.log(newProps) // { id: 1, name: 'test' }
よりクリーンでシンプルな方法はありますか?
これは私がやっている方法です:
var props = { id: 1, name: 'test', children: [] }
//copy props but leave children out
var newProps = { ...props }
delete newProps.children
console.log(newProps) // { id: 1, name: 'test' }
よりクリーンでシンプルな方法はありますか?
var props = { id: 1, name: 'test', children: [] }
function clone(orig, blacklistedProps) {
var newProps = {};
Object.keys(props).forEach(function(key) {
if (!blacklistedProps || blacklistedProps.indexOf(key) == -1) {
newProps[key] = props[key];
}
});
return newProps;
}
var newProps = clone(props, ['children']);
console.log(newProps) // { id: 1, name: 'test' }
var newProps1 = clone(props);
console.log(newProps1) // { id: 1, name: 'test', children:[] }