2
我想在用戶執行上載時發送圖像和數字。如何使用asp.net核心以操作方法接收通過ajax請求發送的文件和整數
我的JavaScript
form.append('file', $(uploader).get(0).files[0]);
var id= $("#id").val();
form.append("id", id);
$.ajax({
method: 'POST',
url: '/images/send',
data: form,
form: false,
processData: false
});
在我的行爲我該怎麼辦?
有了這個,我只收到圖像。
[HttpPost]
public string send(IFormFile file) // What argument should I use
{
How do I get the number and file?
}
嗨,看看如何https://liftcodeplay.com/2017/02/14/using-asp-net-core-and -jquery通話的方法,通AJAX / – 2017-10-15 12:21:59