我有一个采用 Model 类型的视图
public class Product
{
public string PartNumber { get; set; }
public string ShortDescription { get; set; }
public string LongDescription { get; set; }
public string ImageUrl { get; set; }
public List<Document> Documents { get; set; }
public Product()
{
Documents = new List<Document>();
}
}
单击以下链接时,我想调用控制器并以某种方式将 List 作为参数传递给控制器
<a href="@Url.Action("Browse", "Home", new { docList= Model.Douments})" data-role="button" data-icon="search" class="my-btn">Available Documents</a>
public ActionResult Browse(List<Documentr> docList)
{}
如果我不必在我不想的查询字符串上传递列表。
寻求帮助修复我的代码以实现这一点