第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 AJAX Post 將 Excel 文件傳遞??到服務(wù)器

使用 AJAX Post 將 Excel 文件傳遞??到服務(wù)器

當(dāng)年話下 2023-09-18 15:26:19
我只是希望能夠使用 html 輸入類(lèi)型=“文件”來(lái)選擇 Excel 文件<input type="file" id="UploadedFile" name="UploadedFile" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">然后將所選文件傳遞回服務(wù)器 - 最好使用 AJAX post:    var serviceURL = appRoot + 'Register/ImportTasks'    $j.ajax({        type: "post",        url: serviceURL,        data: (??? Not sure how to present here ???),        contentType: "application/json; charset=utf-8",        dataType: "json",        success: successFunc,        error: errorFunc    });具體來(lái)說(shuō),我看不到如何將“文件”作為數(shù)據(jù)呈現(xiàn)給 AJAX 調(diào)用。    public void ImportTasks(DataType?? uploadedExcelFile)    {        ..... Doing stuff ...    }然后我不確定我應(yīng)該告訴方法在調(diào)用它時(shí)期望什么參數(shù)數(shù)據(jù)類(lèi)型?
查看完整描述

1 回答

?
寶慕林4294392

TA貢獻(xiàn)2021條經(jīng)驗(yàn) 獲得超8個(gè)贊

這是一個(gè)基本示例。你應(yīng)該使用FormData


     var formData = new FormData();

     var uploadFiles = document.getElementById('js-upload-files').files;

     this.formData.append("MyKey", uploadFiles[0]);


    $.ajax({

        type: "POST",

        url: 'Controller/Upload',

        data: formData,

        dataType: 'json',

        contentType: false,

        processData: false,

        complete: this.onComplete.bind(this)

    });

編輯


忘記控制器代碼


    [HttpPost]

    public virtual BetterJsonResult Upload()

    {


        foreach (var fileKey in Request.Files)

        {

            ...Request.Files[fileKey.ToString()] //access it like this

        }


    }


查看完整回答
反對(duì) 回復(fù) 2023-09-18
  • 1 回答
  • 0 關(guān)注
  • 133 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)