用于NativeScript的Angular BrowserModule

问题描述 投票:0回答:1

由于我们使用BrowserModule在网络区域中使用ngModel,并且在创建新的ng应用程序时默认导入,在NativeScript中它的等价物是什么?

nativescript angular2-nativescript nativescript-angular
1个回答
1
投票

如果你想使用ngModel到nativescript应用程序,你可以使用NativeScriptFormsModule并将其导入你的app.module.ts,如下所示:

import { NativeScriptFormsModule } from "nativescript-angular/forms"

你可以看看这个链接here

© www.soinside.com 2019 - 2024. All rights reserved.