问题标签 [mobx-angular]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
angularjs - angular 1.5 到 angular10 的迁移,ngModel 不工作
我正在将 angular1.5 迁移到 angular10。我当前在 angular1.5 中的代码与 mobx(正在使用 mobx-angularjs 包)。
我用过downgradeComponent
方法。
angularjs模板
<input ng-model="$ctrl.store.personname" name="personname" maxlength="40"/>
angular10 模板
<input [(ngModel)]="store.personname" name="personname" maxlength="40"/>
更改 angular10 模板后,数据绑定不起作用。angular10 是否需要 mobx-angular 包而不是 mobx-angularjs 包?
angular - 使用 mobx-renotedev 将 remotedev 连接到 mobx-angular 项目
我正在尝试连接redux-remotedev
到我的mobx-angular
项目。我正在关注mobx-remotedev
此处的文档,以及如何在此处使用 Angular 的文档,但我无法安排。
我的应用程序模块:
我的 MobxStore:
我还在 polyfills.ts 中添加了这一行:
没有错误,状态按预期工作,但 remotedev 未连接。
提前感谢你们的帮助!