最近我发现了一个很棒的库,它允许在 Angular 应用程序中使用 React 组件,称为ngReact
我的问题是关于可以在 reactDirective 组件上声明的watch-depth属性:
<body ng-app="app">
<div ng-controller="helloController">
<hello-component watch-depth="reference" fname="person.fname" lname="person.lname"></hello-component>
</div>
</body>
查看reactDirective 服务的 ngReact 文档,我发现观察深度有 3 个可能的值:
- 参考
- 收藏
- 价值
在我最初使用 ngReact 的探索中,我一直坚持使用默认值选项。
我的问题是,这些类型之间有什么区别?
当每种观察深度类型都适合使用时,简单的例子会很棒!