我正在使用 dhtmlx 上传器上传文件。
这是我的 JS 代码
{type: "label",label: ""},
{type: "upload",name: "creatives",inputWidth: 330,
url: "/upload_creative",
_swfLogs: "enabled",
swfPath: "static/js/dhtmlxForm/codebase/ext/uploader.swf",
swfUrl: "/upload_creative"
},
这是我将接收文件的python代码。
@app.route('/upload_creative', methods=["GET", "POST"])
@login_required
def upload_creative():
if request.method == "POST":
print 'request.form', request.form
所以......从python......我如何获取文件的名称以便我可以保存到磁盘?我期待图像文件。
当我上传时,我在日志中看到了这一点。
request.form ImmutableMultiDict([])
127.0.0.1 - - [15/Sep/2012 23:59:56] "POST /upload_creative?mode=html5&1347724796791 HTTP/1.1" 200 -