asp.net-mvc – asp.net mvc提交时的表单集合

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – asp.net mvc提交时的表单集合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在asp.net mvc中提交表单的最佳做法是什么?我一直在做这样的代码,但我觉得有更好的方法.建议?
[AcceptVerbs(HttpVerbs.Post)]
    public ActionResult AddNewLink(FormCollection collection_)
    {
        string url = collection_["url"].ToString();
        string description = collection_["description"].ToString();
        string tagsString = collection_["tags"].ToString();
        string[] tags = tagsString.Replace(" ","").Split(',');

        linkRepository.AddLink(url,description,tags);

解决方法

您可以直接使用参数;参数将自动解析并转换为正确的类型.方法中的参数名称必须与从表单中发布的参数名称匹配.
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult AddNewLink(string url,string description,string tagsString)
{
    string[] tags = tagsString.Replace(" ",');

    linkRepository.AddLink(url,tags);
}

这通常适用于更复杂的对象,只要其属性可以设置,并且只要表单键的格式为objectName.PropertyName即可.如果你需要更高级的东西,你应该看看model binders.

public class MyObject
{
    public int Id {get; set;}
    public string Text {get; set;}
}

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult AddNewLink(MyObject obj)
{
    string[] tags = obj.Text.Replace(" ",tags);
}
原文链接:https://www.f2er.com/aspnet/247942.html

猜你在找的asp.Net相关文章