作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找的伪代码如下所示,但它会导致我的浏览器挂起。
索引.ts
findCustomerById(id) {
return new Promise<string>((resolve, reject) => {
resolve("hi");
});
}
getCustomerNameById(id: string) {
return this.findCustomerById(id);
//findCustomerById returns NEW Promise<string>
}
<p>Customer: {{ getCustomerNameById('1') | async }} </p>
//this does not show anything
<p>Customer: {{ getCustomerNameById('1') | async | json }} </p>
//this shows null
<p>Customer: {{ getCustomerNameById('1') | json }}</p>
//this shows the following
{
"__zone_symbol__state": true,
"__zone_symbol__value": "hi"
}
最佳答案
消除
pipes: [...],
directives: [...],
@Component()
imports: [BrowserModule]
至
AppModule
的
@NgModule()
getCustomerNameById('1') | async
来电
getCustomerNameById()
反复甚至挂起我的浏览器。
getCustomerById()
的结果( promise 或实际值)到属性并绑定(bind)到该属性。
关于angular - 如何在 Angular2 模板中显示异步 promise 函数的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42645432/
我是一名优秀的程序员,十分优秀!