0
テンプレートで返された座標を表示するにはどうすればよいですか?Angular2ビューの変数へのアクセス
export class DashboardPage {
constructor(public navCtrl: NavController) {
Geolocation.getCurrentPosition().then(pos => {
this.latitude = pos.coords.latitude;
this.longitude = pos.coords.longitude;
});
}
}
をしかし、これは私にエラーを与える:
export class DashboardPage {
constructor(public navCtrl: NavController) {
Geolocation.getCurrentPosition().then(pos => {
console.log(pos.coords.latitude, pos.coords.longitude);
});
}
}
私が試みた
Typescript Error
Property 'latitude' does not exist on type 'DashboardPage'.
src/pages/dashboard/dashboard.ts
Geolocation.getCurrentPosition().then(pos => {
this.latitude = pos.coords.latitude;
this.longitude = pos.coords.longitude;
Iは{{緯度}}を使用することができるように期待していた
と{{経度} }私のテンプレート内
感謝。特に.tsファイルの上部に何かをインポートする必要がありますか? – Chris
rxjsのバージョンによって異なります。せずにそれを試してください、そしてそれが壊れている場合、それは演算子の下にあるべきです – Meir