我试图更新从API调用中以html格式返回的observable。
我想知道是否有人可以帮助我。
html(在另一个组件上)
<common-content [theme]="theme" ></common-content>
,组件是:
import { Component, OnInit, Input } from '@angular/core';
import { Http, Response } from '@angular/http';
import { ThemeModel } from '../../models';
import 'rxjs/add/operator/toPromise';
@Component({
selector: 'common-content',
template: `<div innerHTML = "{{innerHtml}}"></div>`
})
export class CommonContentComponent implements OnInit {
@Input() page: string;
@Input() theme: ThemeModel;
innerHtml: string;
constructor(private http: Http) {
}
ngOnInit() {
this.populatePage();
}
populatePage(){
let thisUrl = 'myPage.html';
this.http.get(thisUrl).subscribe(f => {
var content = <string>f['_body'];
this.innerHtml = content.replace("{{theme.Name}}", this.theme.name);
}, (error) => {
let e = error;
}, () => {
});
}
}
所以不要做&#34;替换&#34; observable应该自动更新。
我试图使用订阅,我也尝试了一个承诺,但我似乎无法获得语法行为。
有人可以帮忙吗?
提前致谢
答案 0 :(得分:1)
1)你想要达到的目标尚不清楚。 我能说的是你想要更新dom的成功。 2)不要使用内部html,并使用插值或ngModel与清洁剂相同。 3)另一种方法是为同一个创建自定义可重用指令。
方法可以是:
1)制作用于消毒的管道:
import { Pipe, PipeTransform } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
/**
*
* @export
* @class SafeHtmlPipe
* @implements {PipeTransform}
*/
@Pipe({
name: 'safeHtml'
})
export class SafeHtmlPipe implements PipeTransform {
/**
*
* @param {DomSanitizer} sanitizer
* @memberof SafeHtmlPipe
*/
constructor(private sanitizer: DomSanitizer) { }
/**
*
* @param {any} style
* @returns
* @memberof SafeHtmlPipe
*/
transform(style) {
// return this.sanitizer.bypassSecurityTrustStyle(style);
return this.sanitizer.bypassSecurityTrustHtml(style);
// return this.sanitizer.bypassSecurityTrustXxx(style); - see docs
}
}
2)使用它像:
<div class="card_description" [innerHTML]="scenarioStepDataDesc | safeHtml"></div>
其中scenarioStepDataDesc是您的HTML内容。
3)将共享模块用于管道和其他可重用的组件/指令
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MaterialModule } from '../material/material.module';
import { BlockUIModule } from 'ng-block-ui';
import { AutoCompleteComponent } from './components/autoComplete/autoComplete.component';
import { DialogDataComponent } from './components/dialog/dialog.component';
import { SafeHtmlPipe } from './pipes/safeHtml.pipe';
/**
*
* @export
* @class SharedModule
*/
@NgModule({
imports: [CommonModule, FormsModule, MaterialModule, BlockUIModule, ReactiveFormsModule],
exports: [
CommonModule,
FormsModule,
MaterialModule,
BlockUIModule,
ReactiveFormsModule,
AutoCompleteComponent,
DialogDataComponent,
SafeHtmlPipe
],
declarations: [AutoCompleteComponent, DialogDataComponent, SafeHtmlPipe]
})
export class SharedModule { }
享受:)
答案 1 :(得分:0)
我建议您将<string> f['_body'];
更改更新为<string>f.text()
,同时将innerHTML = "{{innerHtml}}"
更新为[innerHTML]="view"
,然后检查以下plnkr链接,因为它正在执行您要执行的操作
this._http.get(link).subscribe(f => {
this.loading = false;
var content = <string>f.text();
this.view = content.replace("{{theme.Name}}", this.theme.name);
}, (error) => {
this.loading = false;
console.error(error);
alert(error);
});
模板就像这样
content <button (click)="open('external.html')">Open Page</button>
<strong *ngIf="loading">LOADING...</strong>
<div [innerHTML]="view"></div>
external.html
很简单,如下所示
me playing around with this theme with name
<b>
{{theme.Name}}
</b>
这是正在运行的Plnkr
但是对于字符串插值处理,就好像内容与父节点在同一模板中加载它并将this
绑定到模板范围,这类似于角度1 ng-include 检查这个answer,因为它有助于解决(而不是重新做),并注意这是针对 angular 4 及以上
使用Angular 4.0.0-beta.6的ngComponentOutlet。