1
我有一個功能,在此功能,我有:離子2全局變量
this.geolocation.getCurrentPosition(posOptions).then((localisation,err) => {
this.storage.get('param1').then((param1) => {
this.storage.get('param2').then((param2) => {
// Do some stuff with localisation, param1 & param2
alert(localisation);
alert(param1);
alert(param2);
})
})
})
這就是我發現,在同時使用「本土化」,「參數1」 &「參數2」的唯一途徑,如果我這樣做:
this.geolocation.getCurrentPosition(posOptions).then((localisation,err) => {
})
this.storage.get('param1').then((param1) => {
})
this.storage.get('param2').then((param2) => {
// Do some stuff with localisation, param1 & param2
alert(localisation);
alert(param1);
alert(param2);
})
它不會找到定位和參數1
謝謝你的傢伙!有用 ! –
很高興聽到它:) –