Loading External Url In Angular2 Router-outlet
I am developing an application using Angular2. I have a component with the following template: Can someone p
Solution 1:
Just create a component to render inside <ng-outlet>
by using the routing config.
Then you component template inside should have an <iframe>
pointing to your external site.
import {Component, OnInit} from'@angular/core';
@Component({
selector: 'app-external-page',
templateUrl: './external-page.component.html',
styleUrls: ['./external-page.component.css']
})
exportclassExternalPageComponentimplementsOnInit {
title = 'app works!';
constructor(private _stellarService: StellarService) {
}
ngOnInit(): void {
}
}
Then your component template should look like
<div><iframesrc="yourexternalpage url"></iframe></div>
Having a code like the one above, only remaining step if to configure a route in your routing.
Solution 2:
did you get answer for this ?
You can have a component as mentioned here . Import and add it to your NgModule; After that import it in the page you want and use the selector instead of <router-outlet>
.
Post a Comment for "Loading External Url In Angular2 Router-outlet"