我想知道Babel如何编译此代码?
const test = ({ val1, val2, ...rest }) => val1.toLowerCase();
test({
val1: 'Test',
val2: 'other',
o1: 'other',
o2: 'Another'
});
这是一个伪函数,它获取一个对象作为参数并将val1
返回给LowerCase。没什么神奇的。
答案 0 :(得分:2)
没有那么复杂。它将创建一个排除属性数组,例如:['val1', 'val2']
并将整个对象和排除数组传递给一个函数:
var test = function test(_ref) {
var val1 = _ref.val1,
val2 = _ref.val2,
rest = _objectWithoutProperties(_ref, ["val1", "val2"]);
return val1.toLowerCase();
};
_objectWithoutProperties
的实现如下:
function _objectWithoutProperties(source, excluded) {
if (source == null) return {};
// This does the trick
var target = _objectWithoutPropertiesLoose(source, excluded);
var key, i;
// If the object keys were Symbols it will append them too.
// If we don't have any symbols this was unnecessary
if (Object.getOwnPropertySymbols) {
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
for (i = 0; i < sourceSymbolKeys.length; i++) {
key = sourceSymbolKeys[i];
if (excluded.indexOf(key) >= 0) continue;
if (
!Object.prototype.propertyIsEnumerable.call(source, key)
) continue;
target[key] = source[key];
}
}
return target;
}
最后_objectWithoutPropertiesLoose
的实现是这样的:
function _objectWithoutPropertiesLoose(source, excluded) {
// if the source object was null so there's nothing to return
if (source == null) return {};
// initialize an empty object to assign values to it later
var target = {};
// get an array of keys from the source object and loop through it
var sourceKeys = Object.keys(source);
var key, i;
for (i = 0; i < sourceKeys.length; i++) {
key = sourceKeys[i];
// THIS IS WHERE IT HAPPENS: if the current key was present on the excluded array, so skip this iteration
if (excluded.indexOf(key) >= 0) continue;
// add the value with that key into the target object
target[key] = source[key];
}
// return the target object
return target;
}