我的文本里面有主题标签。我想让这些标签可点击。 我创建了一个管道,用cssClass hashTag标记所有标签。现在我需要处理这些标签上的点击事件
以下是示例代码
import {Component, NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
import {eigonic} from './hashtag'
@Component({
selector: 'my-app',
template: `
<div>
<h2 [innerHtml]="txt|hash"></h2>
</div>
`,
pipes:[eigonic.Hashtag],
})
export class App {
constructor() {
this.txt = 'This is a #simple post on #Angular !'
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App ],
bootstrap: [ App ],
})
export class AppModule {}
这是管道
import {Pipe} from '@angular/core';
export module eigonic {
@Pipe({ name: 'hash' })
export class Hashtag {
transform(value: string): string {
return value == undefined ? value : value.replace(new RegExp('(#[A-Za-z0-9-_]+)', 'g'), '<span btn clear class="hashTag" >$1</span>');
}
}
}
如果你想玩的话就是一个笨蛋。