这是我的表单我想在一个ajax调用中发布文本字段和图像
<form class="form-horizontal" role="form">
<input type="text" class="form-control" id="id_edit" disabled>
<input type="text" class="form-control" id="name_edit">
<input type="text" class="form-control" id="job_edit">
<input type="text" class="form-control" id="email_edit">
<input type="text" class="form-control" id="contact_edit">
<input type="file" class="form-control" id="profile_edit">
</form>
这是我的ajax脚本
$.ajax({
type: 'PUT',
url: 'team/' + id,
data: {
'_token': $("#token").val(),
'id': $("#id_edit").val(),
'name': $('#name_edit').val(),
'job_title': $('#job_edit').val(),
'email': $('#email_edit').val(),
'contact': $('#contact_edit').val(),
'profile': $('#profile_edit').val()
}