我尝试使用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
xml添加到html文件?
编辑:我应该补充一点,我添加<Page>
的原因是我可以隐藏actionBar。我读到,我能做到这一点的唯一方法是将actionBarHidden="true"
添加到<Page>
元素
答案 0 :(得分:3)
我找到了我的主要目标的答案。 隐藏ActionBar可以通过依赖注入来完成。
import {Page} from "ui/page";
@Component({
// ...
})
class MyComponent {
constructor(page: Page) {
page.actionBarHidden = true;
}
}
https://github.com/NativeScript/nativescript-angular/issues/97