gpt4 book ai didi

javascript - VueJS 将参数传递给 Popup "Dialog"

转载 作者:搜寻专家 更新时间:2023-10-30 22:22:44 36 4
gpt4 key购买 nike

我有一个困境正在构建一个应用程序来跟踪学生的时间,在一个选项卡中你可以看到学生列表和他们本季度的总小时数,还有一个查看更多按钮可以打开一个对话框“弹出窗口”您显示该特定学生的个人资料。

现在,如果您单击按钮,我将使用“@click="dialog = true"打开对话框,仅此而已!

我的问题是如何将学生 ID 传递到此页面,以便我可以联系 ye API 并获取学生信息

学生视角

<v-data-table :headers="headers"
:pagination.sync="pagination"
:items="filteredResources"
:search="search">
<template slot="items" slot-scope="props">
<td>{{ props.item.sid }}</td>
<td class="text-xs-left">{{ props.item.firstName }}</td>
<td class="text-xs-left">{{ props.item.lastName }}</td>
<td class="text-xs-left">{{ props.item.totalHours }}</td>
<td class="text-xs-left">{{ props.item.reason }}</td>
<td class="text-xs-left">
<v-btn fab dark small
color="primary"
@click="dialog = true">
<v-icon dark>edit</v-icon>
</v-btn>
</td>
</template>
<v-alert slot="no-results" :value="true" color="error" icon="warning">
Your search for "{{ searchQuery }}" found no results.
</v-alert>
</v-data-table>

脚本

<script>
import axios from 'axios'
import StudentProfile from './studentsProfile'
export default {
components: {
'studentsProfile': StudentProfile
},
data() {
return {
pagination: {
rowsPerPage: 25
},
dialog: false,
notifications: false,
sound: true,
widgets: false,
searchQuery: '',
headers: [
{
text: 'SID',
align: 'left',
sortable: false,
value: 'name'
},
{ text: 'Firts Name', value: 'firtsname' },
{ text: 'Last Name', value: 'fat' },
{ text: 'Total Hours', value: 'carbs' },
{ text: 'Reason', value: 'protein' },
{ text: 'View More', value: 'view'}
],
summary: []
}
},
created() {
axios.get('/api/StudentSummary')
.then(response => {
// JSON responses are automatically parsed.
this.summary = response.data
})
.catch(e => {
this.errors.push(e)
})
},
computed: {
filteredResources() {
if (this.searchQuery) {
return this.summary.filter((item) => {
return item.sid.startsWith(this.searchQuery);
//return item.searchQuery.startsWith(this.searchQuery);
//return
item.firstName.toLowerCase().includes(this.searchQuery.toLowerCase())
})
} else {
return this.summary;
}
}
}
}

最佳答案

您可以定义一个名为 editStudent 的方法并将 sid 作为参数传递:

模板:

  <v-btn fab dark small
color="primary"
@click="editStudent(props.item.sid )">

方法:

    methods:{
editStudent(id){
this.dialog=true;
this.editedSid=id;
}
}
<v-dialog v-model="dialog" width="500">

<v-btn fab dark small color="primary" @click="editStudent(props.item.sid)">
<v-icon dark>edit</v-icon>
</v-btn>

<!-- the dialog conent -->

</v-dialog>

关于javascript - VueJS 将参数传递给 Popup "Dialog",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54095979/

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