asp.net mvc 中 一个view如何对应多个model呢

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net mvc 中 一个view如何对应多个model呢相关的知识,希望对你有一定的参考价值。

参考技术A 可以对应多model,需要多件一个累,你现在有两个个model, DeviceInfoModel和UploadImageModel,你一个view需要都返回他们,你多建一个类就好。如:
Public class model2

Public List<DeviceInfoModel> listget;set;

Public DeviceInfoModel listget;set;

你在Controllers中给这个model赋值返回就好了。
这样你在你访问的那个view中,就返回model2,然后在view的时候就可以就可以访问到你需要的model了。这样就做,你页面不管需要几个model,都行本回答被提问者和网友采纳
参考技术B 一个view对应一个model, 如果一个view中需要多个model的话 你可以在controller中将它放到ViewBag里
比如 ViewBag.DeviceInfo=DI;
然后在对应view中使用 @ViewBag.DeviceInfo 访问它
参考技术C ajax可以做到 参考技术D 对应多个model不符合规范了,你可以设计一个model里面包含你的多个model追问

能具体一些么?有具体的例子没?

追答

我写段代码,你自己看吧

public class AB

public A _a get; set;
public B _b get; set;

public class A

public string a get; set;

public class B

public string b get; set;

这个代码很简单,不是面向对象

如何在 ASP.NET MVC 中处理 HTML5 多文件上传?

【中文标题】如何在 ASP.NET MVC 中处理 HTML5 多文件上传?【英文标题】:How do I handle HTML5 Multiple File uploads in ASP.NET MVC? 【发布时间】:2014-03-14 03:01:48 【问题描述】:

我找到了following great thread,其中解释了如何使用新的 HTML5 FormData API 通过 AJAX/Jquery 进行文件上传

这是该代码的略微更新版本,使用更新的 JQuery 1.8+ 语法

$(':button').click(function()
    var formData = new FormData($('form')[0]);
    $.ajax(
        url: '/Upload',  //my ASP.NET MVC method
        type: 'POST',
        // handle the progress report
        xhr: function()   // Custom XMLHttpRequest
            var myXhr = $.ajaxSettings.xhr();
            if(myXhr.upload) // Check if upload property exists
                myXhr.upload.addEventListener('progress',progressHandlingFunction,    false); // For handling the progress of the upload
            
            return myXhr;
        ,

        // Form data
        data: formData,

        //Options to tell jQuery not to process data or worry about content-type.
        cache: false,
        contentType: false,
        processData: false
    )
    .done(function()
        alert("success");
    )
    .fail(function()
        alert("error");
    );
);

function progressHandlingFunction(e)
    if(e.lengthComputable)
        $('progress').attr(value:e.loaded,max:e.total);
    

这是表格

<form enctype="multipart/form-data">
    <input name="file" type="file" />
    <input type="button" value="Upload" />
</form>
<progress></progress>

在服务器端,我们有这样的东西。

[HttpPost]
public string Upload(HttpPostedFileBase file)

    // do something with file
    return "you uploaded a file called " + file.FileName;

这很好用。直到您决定在文件对话框中使用“多个”属性,并发送多个文件。

<form enctype="multipart/form-data">
    <input name="file" type="file" multiple="multiple" />
    <input type="button" value="Upload" />
</form>
<progress></progress>

您会在网上找到各种建议以下解决方案的页面

public string Upload(IEnumerable<HttpPostedFileBase> files)

    foreach(var file in files)
         ...

哎呀。没用

public string Upload(List<HttpPostedFileBase> files)

    foreach(var file in files)
         ...

不。不工作。

public string Upload(IEnumerable files)

    foreach(var file in files)
         ...

甚至不编译

public string Upload(HttpPostedFileBase[] files)

    foreach(HttpPostedFileBase file in files)
         ...

你猜怎么着?不工作。让我们尝试处理 Request.Files 。好老可靠的Request.Files。从未失败。

public string Upload()

    foreach (HttpPostedFileBase uf in Request.Files)
         ...

剧透警告:它不起作用。

啊哈。知道了!我将遍历 Request.Files 中的键。

public string Upload()

    foreach(var key in Request.Files.AllKeys)
    
        var file = Request.Files[key];
    

再一次,它不起作用。

【问题讨论】:

【参考方案1】:

的工作如下,from the blog 总是可靠且头发动态的 Rick Strahl

public string Upload()

    for (int i = 0; i < Request.Files.Count; i++)
    
        var file = Request.Files[i];
     

这背后的原因是传递给Request.Files 的文件集合都具有相同的名称,因为它们来自一个单一的文件上传对话框。

服务器端方法被传递一个包含文件的single 对象,出于某种原因,Request.Files 是获取它的唯一方法。

希望我通过添加这个来避免一些头痛。

【讨论】:

文件类型呢?我想允许用户上传".jpg" , ".gif", ".png" 类型的文件...但是由于所有文件都具有相同的名称,那么我怎样才能获得任何文件的类型? 您仍然可以访问文件名,但所有包含这些文件的 post variables 都具有相同的名称。将文件分配给 file 变量后,您可以检查名称和扩展名,并对其进行过滤。【参考方案2】:

就我而言,对我有用的是将所有文件绑定到 ViewModel 字段。 ViewModel 将是我用于前端的模型。

@using School.ViewModels
@model UserProfileViewModel


<form enctype="multipart/form-data">
<input id="username"name="username" type="text" />
<input name="Myfiles" type="file" multiple="multiple" />
<input type="button" value="Upload" />
</form>

UserProfileViewModel.cs

namespace School.ViewModels

    public class UserProfileViewModel
    
        public long Username  get; set; 

        public List<HttpPostedFileBase> Myfiles  get; set; 
    

UserProfilePicturesController.cs

public ActionResult Create([Bind(Include="Username,Myfilese")] UserprofileViewModel userprofileViewModel)

     var files = userprofileViewModel.Myfiles;
     foreach(HttpPostedFileBase file in files)
     
         //do something here
     

【讨论】:

以上是关于asp.net mvc 中 一个view如何对应多个model呢的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ASP.NET MVC 的 ~/Views 文件夹下请求静态 .html 文件?

ASP.NET MVC中如何以ajax的方式在View和Action中传递数据

剑道 DropDownListFor() 与 ASP.NET-MVC

asp.net mvc 如何将controller 里一个action 返回值为list<>的值输出到view

七天学会ASP.NET MVC ——ASP.NET MVC 数据传递

asp.net mvc框架中 怎样在一个 View 内传递多个 Model,最好有代码,谢谢