与TypeScript中的* NgFor等效于读取/获取数据

时间:2019-06-04 15:04:05

标签: javascript html typescript

当我单击按钮时,我尝试在TypeScript中获取/显示数据。但是我只能显示一次数据。我开始了,我并没有弄明白所有事情。 (对不起我的英语)

我已经尝试使用forEach了,但是只能使用一次。

   async spotAdded() {
    this.spots = this.spotService.getSpots(); // i get my data from here
    this.spots.forEach(info => {
      info.forEach(infos => {
        console.log(infos);
        const marker: Marker = this.map.addMarkerSync({
        position: {
          lat: infos.lat,
         lng: infos.lng
          },
        title: infos.description,
        snippet: infos.user,
        disableAutoPan: true
        });
        marker.showInfoWindow();
        });
    });
}    

我实际上有这个,但是数据库中每个点只有一次(我使用firebase):

{id:“ NbtJraND8XhSDUG8rlRY”,createdAt:1559308376871,description:“ Quatre”,flat:false,lat:48.996672,...}

0 个答案:

没有答案