对 Vue2 来说非常新,到目前为止一切都很好,但我遇到了一些障碍,前端不是我的强项。表(vue-tables-2)正确显示数据库中的内容。我在函数中传递一个 id 以确定要更新的特定行,但我也想在按下它时更新数据库中复选框的值。我怎样才能做到这一点?非常感谢。
<v-client-table :data="tableData" :columns="columns" :options="options" >
<input type="checkbox" v-model="props.row.powerOff" @change="powerOff(props.row.id, props.row.powerOff)">
</v-client-table>
export default {
data() {
return {
columns: ['id', 'name', 'location.address', 'status', 'payment', 'powerOff'],
tableData: []
}
},
created() {
HTTP.get('test').then( response => {this.tableData = response.data;})
.catch( error => {});
},
methods: {
powerOff(id, currentPowerOff) {
var testURL = 'test/' + id
HTTP.patch(testURL, {id, currentPowerOff})//
.then( response => {})
.catch( error => {console.log(error); });
}
}
}