1
我有根據webpy菜譜創建了形式彈出一個腳本:我有相關類的簡單代碼輸入[type = file]返回空值
jQuery('#logo').click(function(){
var content = ('<h1>Upload logo</h1>' +
'<form method="POST" enctype="multipart/form-data" action="/upload">' +
'<input type="file" id="myfile" accept="image/jpeg,image/png,image/gif" />' +
'<button id="upload" type="submit">Загрузить</button></form>'
);
popup(content);
});
在我的Python應用程序
:
class uploadPage(allpages):
def POST(self):
x = web.input(myfile={})
print x
但是當我嘗試上傳文件時,我總是得到空的存儲對象。