您好,我正在使用Ionic3。在.ts中,我正在使用此代码来获取数据库中的名称计数。
this.http
.get(this.url)
.map(res => res.json())
.subscribe(
dataa => {
setTimeout(() => {
this.items = dataa;
// Get the data count
for ( let iteme of dataa){
this.get_the_count = this.url_count + iteme.name;
iteme.count = 0;
// Get the count
this.http
.get(this.get_the_count)
.map(res => res.json())
.subscribe(
data1 => {
iteme.count = data1;
},
在html中,我使用了:
<span class="badge1">{{iteme.count}}</span>
如果名称字段是英文字符,这对我来说非常有用,如果我使用阿拉伯语这样的其他编码,问题出在我身上,这是零值