Angular 2 を使用して NativeScript でカスタム ページを作成しようとしています。これを html ファイルに追加するだけでよいとどこかで読みました。
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="pageLoaded" actionBarHidden="true">
<ActionBar title="Create">
<NavigationButton text="Back" android.systemIcon="ic_menu_back"></NavigationButton>
<ActionItem text="Save" (tap)="save()" ios.position="right"></ActionItem>
</ActionBar>
<StackLayout>
<TextField hint="First Name" [(ngModel)]="firstname"></TextField>
<TextField hint="Last Name" [(ngModel)]="lastname"></TextField>
</StackLayout>
</Page>
しかし、これは私にエラーを与えます。また、それをxmlファイルに追加し、コンポーネントテンプレートタグを更新して、代わりにそれを指すようにしました。
import {Component} from "@angular/core";
@Component({
selector: "app",
templateUrl: "pages/login/login.xml"
})
これもエラーになります。だから私は混乱しています。Page
html ファイルに xmlを追加するにはどうすればよいですか?
編集:追加する理由は<Page>
、actionBar を非表示にできるようにするためです。これを行う唯一の方法はactionBarHidden="true"
、<Page>
要素に追加することだと読みました