有任何示例顯示如何使用blobstore api與ajax?使用Blobstore Python API與ajax
當我使用的形式工作正常,但如果使用jQuery我不知道如何發送文件,我得到這個錯誤:
blob_info = upload_files[0]
IndexError: list index out of range
我有這樣的代碼在JavaScript
function TestAjax()
{
var nombre="Some random name";
ajax={
type: "POST",
async:true,
//dataType:"json",
url:"{{upload_url}}",
data:"nombreEstudio="+nombre,
error: function()
{
alert("Some error");
$("#buscando").html("");
},
success: function()
{ alert("it's ok") }
};
$.ajax(ajax);
}
當我使用的形式它與一個輸入標籤(酷似DOC的樣品)