所以我之前问过一个问题,并在 logging
结果方面得到了一些帮助,但是我的结果没有意义。
所以我有一个输入
<input type="file" name="import_file" v-on:change="selectedFile($event)">
v-on:change
将所选文件绑定(bind)到我的数据对象 this.file
selectedFile(event) {
this.file = event.target.files[0]
},
然后我用这个方法提交文件
uploadTodos() {
let formData = new FormData();
formData.append('file', this.file);
for(var pair of formData.entries()) {
console.log(pair[0]+ ', '+ pair[1]);
}
this.$store.dispatch('uploadTodos', formData);
}
但是,当我提交时,似乎没有数据附加到
formData
因为我的 logged
结果是这样的file, [object File]
我不应该将我的实际数据附加到
formData
对象中吗?我引用了其他关于如何发布的文章,但没有得到想要的结果。
article 1
article2
uploadTodos(context, file) {
console.log(file)
axios.post('/import', file,{ headers: {
'Content-Type': 'multipart/form-data'
}})
.then(response => {
console.log(response.data)
context.commit('importTodos', response.data)
})
.catch(error => {
console.log(error.response.data)
})
}
当我
console.log(file)
formData
对象为空后端问题
所以我在后端的 Laravel 问题在于
maatwebsite
包。据我所知,3.0 版本尚不支持导入。建议的唯一解决方法是安装 2.0 版?这仍然是唯一的解决方法吗?这是 Controller 方法public function importExcel(Request $request)
{
if (empty($request->file('file')->getRealPath())) {
return back()->with('success','No file selected');
}
else {
$path = $request->file('file')->getRealPath();
$inserts = [];
Excel::load($path,function($reader) use (&$inserts)
{
foreach ($reader->toArray() as $rows){
foreach($rows as $row){
$inserts[] = ['user_id' => $row['user_id'], 'todo' => $row['todo']];
};
}
});
if (!empty($inserts)) {
DB::table('todos')->insert($inserts);
return back()->with('success','Inserted Record successfully');
}
return back();
}
}
3.0 版不支持的行是这个
Excel::load($path,function($reader) use (&$inserts)
最佳答案
我已经复制了你的代码,它似乎工作正常
是的,当您控制台时,输出应该是一个空对象,这就是 javascript 的工作方式。
将输出转换为数组后,我得到下图中的输出:
const store = new Vuex.Store({
actions: {
uploadTodos(context, file) {
console.log([...file])
axios.post('/import', file,{ headers: {
'Content-Type': 'multipart/form-data'
}})
.then(response => {
console.log(response.data)
context.commit('importTodos', response.data)
})
.catch(error => {
console.log(error.response.data)
})
}
}
})
const app = new Vue({
store,
data: {
file: null
},
methods: {
selectedFile(event) {
console.log(event);
this.file = event.target.files[0]
},
uploadTodos() {
let formData = new FormData();
formData.append('file', this.file);
for(var pair of formData.entries()) {
console.log(pair[0]+ ', '+ pair[1]);
}
this.$store.dispatch('uploadTodos', formData);
}
},
el: '#app'
})
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vuex"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<div id="app">
<input type="file" name="import_file" @change="selectedFile($event)">
<button @click="uploadTodos">
Submit
</button>
</div>
关于vue.js - Vue 中如何使用 FormData() 上传文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53483025/