正試圖上傳圖像文件。現在我需要將文件從angularjs發送到我的asp.net web api控制器。我嘗試了幾個SO問題。 (我不知道哪裏會出錯)它不會幫助我。任何人都可以幫助我解決它。 HTML <input type="file" file="file" fil onchange="angular.element(this).scope().photoChanged(this.files)
我有一個簡單的Web API 2控制器來處理文件上傳。它看起來像這樣: [MyCustomAuthenticationFilter]
[Authorize]
public class FileController : ApiController
{
private IFileRepository _FileRepository;
public FileControlle