Angular 2 Bootstrap 来自外部数据的申请
Angular 2 Bootstrap application from external data
如何在获取外部数据后才加载Angular2应用程序?
例如,同一个html页面上有一个外部应用程序,我需要将一些数据传递给我的应用程序服务。想象一下,这是 API URL,就像 'some_host/api/'
一样,我的应用程序在获取此信息之前不应初始化。
是否可以从外部应用程序脚本调用我的应用程序的某些方法,例如:
application.initApplication('some data string', some_object);
index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>App</title>
<base href="/">
<link>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<script>
application.initApplication('api/url', some_object);
</script>
<app-root
>Loading...</app-root>
</body>
</html>
以下是开始的内容:
plnkr:https://plnkr.co/edit/b0XlctB98TLECBVm4wps
您可以在 window 对象上设置 URL:请参阅下面的 index.html
。
在您的根组件中,添加 *ngif="ready"
,其中 ready 是根组件的 public 成员,默认情况下设置为 false。
然后在带有 http 服务的 service/root 组件中使用 URL,一旦请求成功,您可以将 ready 设置为 true,您的应用程序将显示:请参阅 app.ts
app
组件 ngOnInit
方法。
代码:
文件:src/app.ts
import { Component, NgModule, VERSION, OnInit } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule, Http } from '@angular/http';
@Component({
selector: 'my-app',
template: `
<div *ngIf="ready">
<h2>Hello {{name}}</h2>
</div>
`,
});
export class App implements OnInit {
name: string;
ready: boolean;
constructor(private http: Http) {
this.name = `Angular! v${VERSION.full}`
}
ngOnInit(){
const self = this;
const url = window["myUrl"];
this.http.get(url)
.subscribe(
(res) =>
{
// do something with res
console.log(res.json())
self.ready = true;
},
(err) => console.error(err)),
() => console.log("complete"))
}
}
@NgModule({
imports: [ BrowserModule, HttpModule ],
declarations: [ App ],
bootstrap: [ App ]
})
export class AppModule {}
文件:src/data.json
{
"key1": "val1",
"key2": "val2"
}
文件:src/index.html
<header>
...
<script>window['myUrl'] = 'data.json'</script>
...
</header>
如何在获取外部数据后才加载Angular2应用程序?
例如,同一个html页面上有一个外部应用程序,我需要将一些数据传递给我的应用程序服务。想象一下,这是 API URL,就像 'some_host/api/'
一样,我的应用程序在获取此信息之前不应初始化。
是否可以从外部应用程序脚本调用我的应用程序的某些方法,例如:
application.initApplication('some data string', some_object);
index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>App</title>
<base href="/">
<link>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<script>
application.initApplication('api/url', some_object);
</script>
<app-root
>Loading...</app-root>
</body>
</html>
以下是开始的内容: plnkr:https://plnkr.co/edit/b0XlctB98TLECBVm4wps
您可以在 window 对象上设置 URL:请参阅下面的 index.html
。
在您的根组件中,添加 *ngif="ready"
,其中 ready 是根组件的 public 成员,默认情况下设置为 false。
然后在带有 http 服务的 service/root 组件中使用 URL,一旦请求成功,您可以将 ready 设置为 true,您的应用程序将显示:请参阅 app.ts
app
组件 ngOnInit
方法。
代码:
文件:src/app.ts
import { Component, NgModule, VERSION, OnInit } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule, Http } from '@angular/http';
@Component({
selector: 'my-app',
template: `
<div *ngIf="ready">
<h2>Hello {{name}}</h2>
</div>
`,
});
export class App implements OnInit {
name: string;
ready: boolean;
constructor(private http: Http) {
this.name = `Angular! v${VERSION.full}`
}
ngOnInit(){
const self = this;
const url = window["myUrl"];
this.http.get(url)
.subscribe(
(res) =>
{
// do something with res
console.log(res.json())
self.ready = true;
},
(err) => console.error(err)),
() => console.log("complete"))
}
}
@NgModule({
imports: [ BrowserModule, HttpModule ],
declarations: [ App ],
bootstrap: [ App ]
})
export class AppModule {}
文件:src/data.json
{
"key1": "val1",
"key2": "val2"
}
文件:src/index.html
<header>
...
<script>window['myUrl'] = 'data.json'</script>
...
</header>