我有一个Create
动作的控制器。其目的是从文件表单接收名称和数据,并IndexViewModel
返回IEnumerable<File>
个文件。
public class HomeController : Controller
{
static List<Models.File> files = new List<Models.File>();
public HomeController() { }
[HttpGet]
public IActionResult Index() => View(new IndexViewModel { Files = files });
[HttpGet]
public IActionResult Create() => View();
[HttpPost]
public IActionResult Create(IFormFile file)
{
var filename =
ContentDispositionHeaderValue.Parse(file.ContentDisposition)
.FileName;
using (var reader = new StreamReader(file.OpenReadStream()))
{
var content = reader.ReadToEnd();
files.Add(new Models.File { Name = filename, Data = content });
}
return RedirectToAction(nameof(Index));
}
}
当我在静态 html 中使用表单时,没关系,服务器会收到数据。但是当我在 Angular2 模板中使用相同的表单时,它不会。
import {Component} from 'angular2/core';
import {File} from './file';
@Component({
selector: 'listfile',
template: `
<form method="post" asp-action="Index" asp-controller="Api/File" enctype="multipart/form-data">
<input type="file" name="files" #newFile (keyup.enter)="addFile(newFile.value)"
(blur)="addFile(newFile.value); newFile.value='' ">
<input type="submit" value="Upload" />
</form>
<table class="table">
<th>id</th><th>name</th>
<tr *ngFor="#file of files">
<td>{{file.id}}</td>
<td>{{file.name}}</td>
</tr>
</table>
`
})
export class ListFileComponent {
files = [
new File(1, 'file1'),
new File(2, 'file2')
];
addFile(newFile: string) {
if (newFile) {
this.files.push(new File(this.files.length + 1, newFile.split(/(\\|\/)/g).pop()))
}
}
falert(value) {
alert(value);
}
}
答案 0 :(得分:4)
您对 Angular2 模板和 MVC 预处理有误解。 Here is a post可能会清除这一点。您有 ASP.NET 标记帮助程序,它们不会在服务器上呈现,而是按原样发送到客户端。
您使用的是form post which passes form data,而应该使用 Web API 和 Angular2的 Http服务。
你有很多选择,但其中有两个是最实用的选择:
templateUrl
而不是template
并指向预处理标记帮助程序的/controller/action
并根据需要返回HTML(这将作为< strong> Angular2 模板。/home/index
。然后使用templateUrl
指向用作模板的本地.html
文件。并构建一个支持您所需的所有交互的API。我希望这可以解决问题!
<小时/> 如果您要使用内联或静态.html
,则需要删除 ASP.NET 标记帮助程序。
@Component({
selector: 'listfile',
template: `
<form (submit)="" >
<input type="file" name="files" #newFile (keyup.enter)="addFile(newFile.value)"
(blur)="addFile(newFile.value); newFile.value='' ">
<input type="submit" value="Upload" />
</form>
<table class="table">
<th>id</th><th>name</th>
<tr *ngFor="#file of files">
<td>{{file.id}}</td>
<td>{{file.name}}</td>
</tr>
</table>
`
})
export class ListFileComponent {
// ...
constructor(private http: Http) { }
onSubmit() {
const body = JSON.stringify({ this.files });
this.http
.post('api/file/create',
body,
{ headers: new Headers({ "Content-Type": "application/json" }) })
.map(response => response.json())
.subscribe(json => { /* handle it */ });
}
}
然后,您必须更改API签名才能更准确地接受数据。