我希望您能如何帮助我,我正在尝试保存b-form-select中的值,有趣的是,它填充了选择并如您所见,我确实警惕了,在那里我意识到,如果它带来了我需要的值,但是在放置看跌期权时将空值放入模型中时,我将其定义为charfield,并从Choice中获取它。
<b-form-select v-model="elmovimiento.tipo" @select="Tselected" :options="Toptions" required="required"></b-form-select>
updateMovimiento: function() {
alert("Este es Tipo: "+this.elmovimiento.tipo+" Este es Descripción: "+this.elmovimiento.descripcion);
id = this.elmovimiento.id;
varurl = "/control/movimiento/api/mov/"+id+'/';
this.$http.put(varurl, this.elmovimiento).then((response) => {
alert("Este es Tipo: "+this.elmovimiento.tipo+" Este es Descripción: "+this.elmovimiento.descripcion+" Otro: "+this.elmovimiento.arete);
this.elmovimiento = response.data;
this.$root.$emit('bv::hide::modal', this.infoModal.id);
})
.catch((err) => {
this.loading = false;
console.log(err);
})
},