我一直在查看GitHub repo的React Dev Tools,并将一些代码用于我自己的项目。我无法理解setInProps
方法中path
应该是什么:
function setInProps(internalInst, forceUpdate, path: Array<string | number>, value: any) {
var element = internalInst._currentElement;
internalInst._currentElement = {
...element,
props: copyWithSet(element.props, path, value),
};
forceUpdate.call(internalInst._instance);
}
好像是某种类型的数组。它已传递给copyWithSet(...)
:
function copyWithSet(obj: Object | Array<any>, path: Array<string | number>, value: any): Object | Array<any> {
return copyWithSetImpl(obj, path, 0, value);
}
然后copyWithSetImpl(...)
:
function copyWithSetImpl(obj, path, idx, value) {
if (idx >= path.length) {
return value;
}
var key = path[idx];
var updated = Array.isArray(obj) ? obj.slice() : {...obj};
// $FlowFixMe number or string is fine here
updated[key] = copyWithSetImpl(obj[key], path, idx + 1, value);
return updated;
}
有人可以举例说明如何使用setInProps
更新道具中的内容吗?我已经有了内部实例对象,并假设value
只是prop值。