在HtmlView中处理链接打开事件

时间:2018-11-12 13:15:30

标签: nativescript

我有一个带有链接的html代码。下面的代码是我的模板:

<HtmlView [html]="htmlString" ></HtmlView>

这是我的组件:

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

@Component({
    moduleId: module.id,
    templateUrl: "./creating-htmlview.component.html"
})

export class CreatingHtmlViewExampleComponent {
    public htmlString: string;

    constructor() {
        this.htmlString = '<a href="http://google.com/">google</a>';
    }
}

当HtmlView运行时如何处理a元素?有什么方法可以检测用户何时运行链接?

1 个答案:

答案 0 :(得分:1)

尚不支持,有一个open feature request。您可以编写实现ClickableSpan或Linkify之类的本地api的插件。