gpt4 book ai didi

javascript - VueJS 设置输入字段数据

转载 作者:行者123 更新时间:2023-11-27 23:31:49 24 4
gpt4 key购买 nike

当我从另一个函数收到更新的信息时,我想使用 VueJS 设置输入字段的值。我不清楚,当函数 getLatLng 返回时如何更新输入字段的值。当我在控制台上输出时,它运行得很好,因此功能正在运行。但是如何正确连接输入字段以显示纬度值?我需要计算属性吗?还是只是普通的?

HTML

<form>
<input type="text" class="Form" placeholder="Latitude" v-model="latitude" value="@{{ latitude }}">
</form>

VUE

var Vue = require('vue');
import VueResource from 'vue-resource';
Vue.use(VueResource);

window.app = new Vue({
el: '#GISContainer',

// Data to be stored
data: {
// Save Data for address, latitude and longitude
address: '',
latitude: '',
defaultMapLocation: 'Fichtenstrasse 30 82256',

// Responder Information
responders: [
{id: 1, name: 'Test 1'},
{id: 1, name: 'Test 2'},
]
},
// Methods
methods: {
init: function() {
initGISMap(this.$els.map);
this.address === '' ? setMapLocationToAddress(this.defaultMapLocation) : setMapLocationToAddress(this.address);
},
setMapToSearchAddress: function() {
setMapLocationToAddress(this.address);
getLatLng(this.address, function(latlng) {
this.latitude = latlng[0];
})
}
}
});

外部JS函数

function geocodeAddress(address, callback) {
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ address: address }, function(results, status) {
if (status === google.maps.GeocoderStatus.OK) {
if (results.length > 0) {
callback(results[0].geometry.location);
} else {
console.log("No results found");
}
} else {
console.log("Geocoder failed due to: " + status);
}
});
}

function getLatLng(address, callback) {
latLng = [];
geocodeAddress(address, function(position) {
latLng.push(position.lat());
latLng.push(position.lng());
callback(latLng);
});
}

最佳答案

要设置纬度,您应该 bind this 关键字:

getLatLng(this.address, function(latlng) {
this.latitude = latlng[0];
}.bind(this))

关于javascript - VueJS 设置输入字段数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34503003/

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