尝试使用共享代码隐藏操作栏时发生的问题

时间:2019-01-24 20:24:18

标签: android ios angular nativescript angular7

我已经构建了Angular + nativescript应用。我正试图隐藏操作栏(像很多人一样)。

我做了两个服务助手。两者都有相同的签名。一个用于网络,另一个用于移动。对于移动助手,我处理的是注入的TNS Page组件。

但是当我运行移动应用程序时,操作栏总是在这里。

助手

action-bar-helper.service.tns.ts:

import { Injectable } from "@angular/core";
import { Page } from "tns-core-modules/ui/page/page";
@Injectable()
export class ActionBarHelperService {  
    constructor(private page: Page){

    }

    hideActionBar(){
        this.page.actionBarHidden = true;
    }
}

action-bar-helper.service.ts:

import { Injectable } from "@angular/core";

@Injectable()
export  class ActionBarHelperService {    
    constructor(){}
    hideActionBar(){}
}

移动和网络的共享组件

login.component.ts:

@Component({
  selector: 'app-login',
  moduleId: module.id,
  templateUrl: './login.component.html',
  styleUrls: ['./login.component.css']
})
export class LoginComponent{

  constructor(private actionBarHelperService: ActionBarHelperService) 
  {
    this.actionBarHelperService.hideActionBar();
  }
}

此外,我在 main.tns.ts 中将createFrameOnBootstrap设置为true:

import { platformNativeScriptDynamic } from 'nativescript-angular/platform';
import { AppModule } from './app/app.module';

platformNativeScriptDynamic({ createFrameOnBootstrap: true }).bootstrapModule(AppModule);

我不知道是否有帮助,但是当我运行模拟器并且未将其设置为true时,出现错误,提示than page为空:

Successfully synced application org.nativescript.docdoc on device emulator-5554.
JS: Angular is running in the development mode. Call enableProdMode() to enable the production mode.
JS: ERROR TypeError: Cannot set property 'actionBarHidden' of null
JS: ERROR CONTEXT {
JS:   "view": {
JS:     "def": {
JS:       "nodeFlags": 33669121,
JS:       "rootNodeFlags": 33554433,
JS:       "nodeMatchedQueries": 0,
JS:       "flags": 0,
JS:       "nodes": [
JS:         {
JS:           "nodeIndex": 0,
JS:           "parent": null,
JS:           "renderParent": null,
JS:           "bindingIndex": 0,
JS:           "outputIndex": 0,
JS:           "checkIndex": 0,
JS:           "flags": 33554433,
JS:           "childFlags": 114688,
JS:           "directChildFlags": 114688,
JS:           "childMatchedQueries": 0,
JS:           "matchedQueries": {},
JS:           "matchedQueryIds": 0,
JS:           "references": {},
JS:           "ngContentIndex": null,
JS:           "childCount": 1,
JS:           "bindings": [],
JS:           "bindingFlags": 0,
JS:           "outputs": [],
JS:           "element": {
JS:             "ns": "",
JS:             "name": "app-login",
JS:             "attrs": [],
JS:             "template": null,
JS:             "componentProvider": {
JS:               "nodeIndex": 1,
JS:               "parent": "[Circular]",
JS:               "renderParent": "[Circular]",
JS:               "bindingIndex":...

有什么想法或解决方案吗?

解决方案:

由于@Manoj,我编写了一条指令。见下文:

import { Directive } from '@angular/core';
import { Page } from 'tns-core-modules/ui/page/page';

@Directive({
  selector: '[hideActionBar]'
})
export class HideActionBarDirective {
  constructor(private page: Page) {
    this.page.actionBarHidden = true;
  }
}

,现在在我的 login.component.tns.html 中:

<StackLayout hideActionBar>
    <Button text="login works!" class="btn btn-primary"></Button>
</StackLayout>

2 个答案:

答案 0 :(得分:1)

由于ActionBarHelperServiceLoginComponent的依赖项,因此即使在创建页面之前也必须实例化该服务。

也许您可以将页面作为hideActionBar方法的参数传递,或者只是在visibility的{​​{1}}标签上设置ActionBar属性,或者使用指令而不是服务

答案 1 :(得分:0)

ActionBarHelperService在构造函数中需要一个参数(页面)(

constructor(private page: Page)

),但是通过以下方法在login.component.ts中创建它的实例时,没有在ActionBarHelperService中传递参数

constructor(private actionBarHelperService: ActionBarHelperService)