我在使用jQuery中的ajax调用编写用于发送html表单的程序时遇到问题。 这是我的upload.html和form.js文件:
$(document).ready(function() {
$('form').on('submit', function(event) {
$.ajax({
type : 'POST',
url : '/uploadhc',
data : $('#hc')
})
.done(function(data) {
if (data.error) {
$('#errorAlert').text(data.error).show();
$('#successAlert').hide();
}
else {
$('#successAlert').text(data.file).show();
$('#errorAlert').hide();
}
});
event.preventDefault();
});
});
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<meta charset="UTF-8">
<title>File Upload</title>
<script type=text/javascript src="{{ url_for('static', filename='form.js') }}"></script>
</head>
<body>
<h1>Please upload all the corresponding files</h1>
<div id="upload">
<form id="upload-hc" >
<input type="file" name="file" accept=".csv" id="hc">
<input type="submit" value="go">
</form>
<br>
<p id="successAlert" style="display:none;">Success!</p>
<p id="errorAlert" style="display:none;">Fail!</p>
</div>
<script>
</script>
</body>
</html>
这是我的Flask服务器:
import os
from flask import Flask, render_template, request, jsonify
app = Flask(__name__)
APP_ROOT = os.path.dirname(os.path.abspath(__file__))
@app.route("/")
def index():
return render_template("upload.html")
@app.route("/uploadhc", methods=['POST'])
def uploadhc():
target = os.path.join(APP_ROOT, "DataSource/")
if not os.path.isdir(target):
os.mkdir(target)
print request.files
if 'file' not in request.files:
error = "Missing data source!"
return jsonify({'error': error})
file = request.files['file']
fileName = "DCData.csv"
destination = '/'.join([target, fileName])
file.save(destination)
success = "Success!"
return jsonify({'file': success})
if __name__ == "__main__":
app.run(port=4555, debug=True)
当我尝试选择csv文件并提交HTML表单时,服务器说request.files是ImmutableMultiDict([]),它是空的。知道如何将文件发送到我的服务器吗?谢谢!
答案 0 :(得分:3)
您需要将表单作为分段上传发送,您可以使用FormData(formElement)
var form = $('#upload-hc')[0]
var fd = new FormData(form)
$.ajax({
type : 'POST',
url : '/uploadhc',
data: fd,
processData: false, // tell jQuery not to process the data
contentType: false // tell jQuery not to set contentType
})
如果您有兴趣,可以在这里找到es6版本
// short for jquery(function($){ ... })
// which is the equvilant to $(document).ready(function($) {
jQuery($ => {
$('form').on('submit', event => {
event.preventDefault()
let form = $('#upload-hc')[0]
let fd = new FormData(form)
fetch('/uploadhc', {method: 'POST', body: fd})
.then(res => {
// console.log(res.ok)
return res.json() // or res.text, res.arraybuffer
})
.then(result => {
console.log(result)
})
})
})
答案 1 :(得分:0)
在html端:
<input type="file" id="uploadfile" name="NewCsvUpload">
在JavaScript端:
var form_data = new FormData();
form_data.append('file', $('#uploadfile').prop('files')[0]);
$(function() {
$.ajax({
type: 'POST',
url: '/uploadLabel',
data: form_data,
contentType: false,
cache: false,
processData: false,
success: function(data) {
console.log('Success!');
},
});
在服务器端:::
@app.route('/uploadLabel',methods=[ "GET",'POST'])
def uploadLabel():
isthisFile=request.files.get('file')
print(isthisFile)
print(isthisFile.filename)
isthisFile.save("./"+isthisFile.filename)
答案 2 :(得分:-1)
当我过去做过这件事时,我总是将enctype="multipart/form-data"
放在form
div中。
这里有几个链接可以更详细地解释它: