5

我试图避免 NativeScript 应用程序中出现意外行为。

当我走进任何具有搜索字段 (SearchBar) 的屏幕时,系统会自动将焦点放在搜索字段上。

然后我得到了一位朋友的帮助,他给了我一个解决这个问题的功能。但是我现在面临的问题是我无法获取界面元素。我有以下代码:

import {Component} from "@angular/core";
import {Page} from "ui/page";
import frame = require("ui/frame");

@Component({
    selector: "clientes",
    templateUrl: "pages/clientes/clientes.html",
    styleUrls: ["pages/clientes/clientes.common.css",
    "pages/clientes/clientes.css"]
})

export class ClientesPage {

    page;

    constructor(private _router: Router) {
        this.page = <Page>frame.topmost().currentPage;
        this.removeSearchFocus();
    }

    removeSearchFocus() {
        var parent = this.page.getViewById('box-lista');
        var searchBar = this.page.getViewById('barra-busca');

        console.log(JSON.stringify(parent)); // UNDEFINED
        console.log(JSON.stringify(searchBar)); // UNDEFINED

        if (parent.android) {
            parent.android.setFocusableInTouchMode(true);
            parent.android.setFocusable(true);
            searchBar.android.clearFocus();
        }

    }
}

然后我有模板:

<Page.actionBar>
    <ActionBar title="Clientes"></ActionBar>
</Page.actionBar>

<StackLayout orientation="vertical" id="box-lista">
    <SearchBar hint="Buscar" cssClass="mh mv" id="barra-busca"></SearchBar>
</StackLayout>

我的目标是获得搜索字段的自动焦点,但我无法获得界面元素。

4

2 回答 2

10

在此之上扩展 Nikolay 的答案以使用@ViewChild将 #foo 添加到您的堆栈布局中,因此它看起来像:

<StackLayout #foo ....

然后:

@ViewChild('foo') stackLayout: ElementRef;

ngAfterViewInit() {
    let yourStackLayoutInstance = this.stackLayout.nativeElement;
} 

它不会通过 ID 获取元素,但这是与元素交互的更 ng2 方式,并使您的代码更松散地耦合到 DOM。

于 2016-06-17T14:51:21.533 回答
2

要在项目中获取元素,您应该使用 @ViewChild装饰器,这将帮助您创建指向SearchBar. 关于这一点,您可以在这里查看我的项目,也可以查看这篇文章:使用 NativeScript 和 Angular 2 构建应用程序

于 2016-06-17T14:41:06.340 回答