我有一个显示所有数据的简单表格:
主要文件.php
<table class="table table-bordered table-hover" id="all-jobs">
<thead>
<tr>
<th>{{ __('Job Name') }}</th>
<th>{{ __('Job Description') }}</th>
<th>{{ __('Job Status') }}</th>
<th>{{ __('Job Applications') }}</th>
<th>{{ __('Manage') }}</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td class="non_searchable"></td>
<td class="non_searchable"></td>
</tr>
</thead>
</table>
<div id="app">
<div id="editJob" class="modal fade in" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<edit-job id=""></edit-job>
</div>
</div>
</div>
</div>
现在,我有一个编辑按钮,我正在尝试打开该特定行的编辑模式:
<a href='' data-id='{$job->id}' class='btn btn-xs btn-danger' data-toggle='modal' data-target='#editJob'><i class='fa fa-close'></i></a>";
href是我的一个数据表中的位置,我试图将它传递给我的.vue文件,所以我可以将它用于我的获取和发布请求:
myfile.vue
<template>
<div>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Edit Job</h4>
</div>
<div class="modal-body">
<form method="post" @submit.prevent="signIn" @keydown="errors.clear($event.target.name)">
<!-- Removed code, it's just inputs !-->
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info btn-fill btn-wd" v-on:click="addJob">Save</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</template>
<script>
export default
{
props: ['id'],
data: function ()
{
return {
countries: [],
name: '',
summary: '',
salarytype: '',
salaryfrom: '',
salaryto: '',
location: '',
contactemail: '',
contactphone: '',
errors: new Errors()
}
},
methods:
{
addJob: function()
{
axios.post('/jobs/edit', this.$data)
.then(response => {
if(response.data.status === true){
$('#editJob').modal('hide');
getJobTable();
}
else{
formError = response.data.message;
}
})
.catch(error => this.errors.record(error.data))
}
},
mounted: function()
{
console.log($(this).data('id'));
axios.get('/jobs/my-job/')
.then(response => {
this.name = response.data.name
this.summary = response.data.summary
this.salarytype = response.data.salary_type
this.salaryfrom = response.data.salary_from
this.salaryto = response.data.salary_to
this.location = response.data.location
this.contactemail = response.data.contact
this.contactphone = response.data.phone
})
axios.get('/countries')
.then(response => {
this.countries = response.data;
})
}
}
</script>
如何将我的href id传递给我用于我的请求?感谢
我的结构:
创建-jobs.blade.php
编辑-Job.vue
app.js
该表只填充数据,并添加如下所示的下拉列表:
<ul class='icons-list'>
<li class='dropdown'>
<a href='#' class='dropdown-toggle' data-toggle='dropdown' aria-expanded='false'>
<i class='icon-menu9'></i>
</a>
<ul class='dropdown-menu dropdown-menu-right'>
<li>
<a data-id='{$job->id}' onclick='getID({$job->id})' data-toggle='modal' data-target='#editJob'>
<i class='icon-file-pdf'></i> Edit Job
</a>
</li>
<li>
<a href='javascript:void();' data-id='{$job->id}' onclick='deleteJob({$job->id})'>
<i class='icon-cross'></i> Delete Job
</a>
</li>
</ul>
</li>
</ul>
答案 0 :(得分:4)
您没有提供有关应用程序结构的大量信息,但看起来您使用至少一个单个文件组件来显示模式中的数据,该数据通过Bootstrap完全显示。看起来像要传递给Vue的id
值的表格在Vue本身之外。
在这种情况下,您可以将所需数据传递给单个文件组件的方法是在变量中捕获Vue,然后在单击表中的链接时设置id
。
我们假设您的main.js
或app.js
看起来像这样:
import Vue from 'vue'
import EditJob from './EditJob.vue'
Vue.component('edit-job', EditJob)
const app = new Vue({
el: '#app',
data:{
id: null
}
})
// Add a click handler for the links with the `data-id` property.
// This is using jQuery (because you are using Bootstrap) but you
// can do this any way you want.
$("[data-id]").on("click", function(){
// Set the Vue's data to the data-id property in the link.
app.id = this.dataset.id
})
注意代码如何在变量new Vue(...)
中捕获app
的结果。然后,我将数据属性id
添加到Vue,并为每个链接点击处理程序,只要点击链接,就会将app.id
设置为this.dataset.id
。这样,每次点击链接时,Vue中的数据属性都将设置为所点击链接的id
。
然后,您需要做的就是将id属性绑定到您的组件。
<edit-job :id="id"></edit-job>
,您的EditJob
组件将始终获得更新的id
。
修改强>
在您添加到示例中的代码中,您将在Created-jobs.blade.php
中定义所有jQuery脚本。在这种情况下,您编写的函数getID
无法访问您在webpack包中定义的app
变量,因为正常的javascript范围规则。要使{j}代码可以访问app
,请将其添加到window
。
window.app = new Vue({
el: '#app',
data:{
id: null
}
});
其次,虽然你定义了getID
函数,没有调用它。单击链接时需要调用它。将其添加到Created-jobs.blade.php
中的jQuery代码中(理想情况下,在文档ready
函数中)。
$("[data-id]").on("click", getID)