我正在使用vue js为我的应用程序选择选项输入..我需要设置默认值应该在下拉列表中选择,而在更改时我想调用两个函数..
我是vue js的新手..
我的代码:
var listingVue = new Vue({
el: '#mountain',
data:{
formVariables: {
country_id: '',
mountain_id: '',
peak_id: ''
},
countrylist:[],
mountainlist:[],
},
ready: function() {
var datas = this.formVariables;
this.getCountry();
},
methods: {
getCountry: function()
{
this.$http.get(baseurl+'/api/v1/device/getCountry',function(response)
{
this.$set('countrylist',response.result);
//alert(jQuery('#country_id').val());
});
},
getMountain: function(country_id)
{
var datas = this.formVariables;
datas.$set('country_id', jQuery('#country_id').val() );
postparemeters = {country_id:datas.country_id};
this.$http.post(baseurl+'/api/v1/site/getMountain',postparemeters,function(response)
{
if(response.result)
this.$set('mountainlist',response.result);
else
this.$set('mountainlist','');
});
},
});
<select
class="breadcrumb_mountain_property"
id="country_id"
v-model="formVariables.country_id"
v-on="change:getMountain(formVariables.country_id);">
<option
v-repeat = "country: countrylist"
value="@{{country.id}}" >
@{{country.name}}
</option>
</select>
答案 0 :(得分:14)
使用vue 2,提供的答案不会很好。我遇到了同样的问题,并且vue文档对于<select>
并不清楚。我发现<select>
标签正常工作的唯一方法是(在谈到问题时):
<select v-model="formVariables.country_id">
<option v-for = "country in countrylist" :value="country.id" >{{country.name}}</option>
</select>
我认为@{{...}}
中的@ -sign是由刀片造成的,不使用刀片时不需要。
答案 1 :(得分:8)
在VueJS 2中,您可以将selected
绑定到所需的默认值。例如:
<select
class="breadcrumb_mountain_property"
id="country_id"
v-model="formVariables.country_id"
v-on:change="getMountain(formVariables.country_id);">
<option
v-for = "country in countrylist"
:selected="country.id == 1"
:value="country.id" >
{{country.name}}
</option>
</select>
因此,在countryList的迭代过程中,将选择ID为1的国家/地区,因为country.id == 1
将为true
,这意味着selected="true"
。
更新:
正如Mikee建议的那样,有一种新方法来绑定事件,而不是v-on="change:getMountain(formVariables.country_id);"
。还有一个简短形式@change="getMountain(formVariables.country_id);"
答案 2 :(得分:3)
您应该使用&#39; options
&#39;属性代替尝试重复<option></option>
:
<强> VM 强>
data: {
countryList: [
{ text:'United States',value:'US' },
{ text:'Canada',value:'CA' }
]
},
watch: {
'formVariables.country_id': function() {
// do any number of things on 'change'
}
}
<强> HTML 强>
<select
class="breadcrumb_mountain_property"
id="country_id"
v-model="formVariables.country_id"
options="countryList">
</select>