我对 MVC 和 Web 开发非常陌生。我需要传递一个我已经拥有的令牌,然后是我试图下车的文件名和文件,<input type="file" id="theFile"/>
然后还需要日期。一旦我可以将这些信息输入 Home 控制器,我就可以使用 C#,然后我就知道发生了什么。但目前我不确定我是否走在正确的道路上。
我如何通过按钮将这些值传递给控制器?
在我看来:
<input type="file" id="theFile"/>
<br>
<button type="button" onclick="Upload(token = Model.Token, fileName = theFile.Value.tostring(), modDate = date.now, file = theFile.value);" >Upload file to the website</button>
在 HomeControler 中:
public ActionResult Upload(string token, string filename, string moddate, object file)
{
}