一个修改身高的控件, 可滚动的尺子是用 ScrollView 来实现的, 在父组件中有个单位切换的按钮, 切换单位时会调整默认的身高数值并且滚动尺子到指定位置. 比如用户调整 ft 到 cm, 数值会变成 170 并且尺子也会滚动到 170 (包括下面的单位数值也会变).
如果这是一个 class component:
<ChangeUnitButtons onClick={()=> { rullerRef.current.changeUnit() }} />
<Ruller ref={rullerRef} />
class Ruller extends React.Component {
changeUnit() {
scrollViewRef.current.scrollTo(someCalculatedValue);
}
render() {
return (
<ScrollView ref={scrollViewRef} />
);
}
}
但这个控件是用 Functional Component 实现的, 不能通过 ref 来获取 instance 然后 instance.someMethod
来调用内部方法.
查了下 React 的文档, 可以通过 useImperativeHandle
这个 hook 配合 forwardRef
来实现这种需求.
但 useImperativeHandle
是用来做这个事情的吗? 虽然是可以用来做这个事情, 但查了下文档, 其设计目的不是用来做这个事情的:
useImperativeHandle
customizes the instance value that is exposed to parent components when usingref
所以上面这种需求应该怎么处理? 有什么 workaround?
考虑过:
{unit === 'cm' ? <Ruller /> : <Ruller />}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.