gpt4 book ai didi

javascript - 将局部变量作为全局变量传递

转载 作者:行者123 更新时间:2023-11-28 19:36:51 26 4
gpt4 key购买 nike

我正在使用 Google map V3 绘制一条线,并且希望能够将局部变量 loc 作为全局变量传递,这样我就可以在整个代码之外使用它。我怎样才能做到这一点?

if(this.flightdetails.route_details.length > 0)
{
$.each(this.flightdetails.posreports, function(i, nav)
{
var loc = new google.maps.LatLng(nav.latitude, nav.longitude);
// Rest of code

path[path.length] = loc;
focus_bounds.extend(loc);
});
}

最佳答案

var loc;
if(this.flightdetails.route_details.length > 0)
{
$.each(this.flightdetails.posreports, function(i, nav)
{
loc = new google.maps.LatLng(nav.latitude, nav.longitude);
// Rest of code

path[path.length] = loc;
focus_bounds.extend(loc);
});
}
console.log(loc);

关于javascript - 将局部变量作为全局变量传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25724295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com