如何在for循环和if语句之外获取变量值

时间:2019-04-11 14:31:22

标签: ionic-framework

有什么方法可以在for和if语句之外获取变量值?

这是我想要的例子:

maxNumber:any = 0;

 this.http.get("http://www.yyyyyyy.ma/yyyyyy.php").map(res => res.json()).subscribe(data =>{
  this.Numbres = data

      for(let N of this.Numbres){
          if(N.Max != 0){
              maxNumber = n.Max;
          }
      }
});

 console.log("max nombre is :" this.maxNumber);

最大标称值为:6

0 个答案:

没有答案