gpt4 book ai didi

c# - 根据 Controller 响应动态更改 View 部分

转载 作者:太空狗 更新时间:2023-10-29 20:19:38 30 4
gpt4 key购买 nike

我正在为以下场景寻找最佳方法建议:

  • 用户可以选择一个或多个 csv 文件进行验证(附件 1),点击“验证”按钮会执行验证代码(显示进度条,直到返回输出)。
  • 返回响应是成功消息或选择验证的每个文件的错误详细信息(附件 2)
  • 现在可以使用“上传”按钮将成功验证的文件上传到 Azure 存储。

附件一 enter image description here

附件二 enter image description here

现在,要使一切都异步,我的想法是 View 需要为每个文件提供单独的灵活部分。

我正在使用带有 knockout.js 的 MVC5 razor views,我对部分 View 有不错的想法,但我不确定如何去做。如果不是局部 View ,那么最好的方法是什么。

最佳答案

my thought is that the view needs to have individual flexible section for each file

有点,我认为您需要一个单独的文件模型/类,以便按需运行 ajax 命令,至少我是这样理解您的解释的。

查看这个 jsfiddle,我添加了一些随机的 true/false 和字符串内容来尝试尽快模仿您的布局。对于测试,请尝试使用 5 个或更多文件(随机生成器在 JS 中有点挑剔)。

https://jsfiddle.net/n2ne6yLh/10/

所以本质上,您在文件输入上监听更改事件。在这种情况下,将每个文件映射到一个新模型“FileModel”,然后将其推送到 observableArray 文件中。每个 FileModel 包含它自己的单独结果、验证函数等。然后布局负责其余部分。

您需要查看 FormData Web API 才能使用 Javascript 处理文件。如果您的客户/用户使用的是过时的浏览器,则存在用于 FormData 内容、jquery 和您拥有的东西的垫片/polyfill。 https://developer.mozilla.org/en-US/docs/Web/API/FormData

var PageModel = function(r) {
var self = this;
this.Files = ko.observableArray();
this.FileErrors = ko.computed(function() {
return _.some(self.Files(), function(file) {
return file.IsValid() === false;
});
});
this.ClearFiles = function() {
document.getElementById("your-files").value = "";
self.Files([]);
};

var control = document.getElementById("your-files");
control.addEventListener("change", function(event) {
// When the control has changed, there are new files
var i = 0,
files = control.files,
len = files.length;
var form = new FormData();

for (; i < len; i++) {
form.append(files[i].name, files[i]);
self.Files.push(new FileModel(files[i], files[i]));
}
}, false);

}

var FileModel = function(r, fileObject) {
var self = this;
this.FileObject = fileObject;
this.Name = r.name;
this.Type = r.type;
this.Size = r.size;

this.IsValidated = ko.observable(false);
this.IsValid = ko.observable();
this.ValidationErrors = ko.observable();

this.ValidateFile = function() {
//Do some ajax to validate file
//console.log('Doing an ajax thing.')

// Randomizers for validation, remove in production
var random_boolean = Math.random() >= 0.5;
var random_strins = Math.random().toString(36).substring(7);

// Set vals based on returned ajax response.
self.IsValidated(true);
self.IsValid(random_boolean);
self.ValidationErrors(random_strins);
};
this.UploadFile = function() {
alert('uploading this file to the interwebs, yay!')
}
}

window.model = new PageModel();
ko.applyBindings(model);
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js"></script>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-push-3">
<div class="form-group">
<div class="input-group">
<input type="file" class="form-control" id="your-files" multiple>
<span class="input-group-btn">
<button class="btn btn-info" data-bind="click: ClearFiles">Clear</button>
</span>
</div>
</div>
</div>
</div>
</div>

<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<h4>Validate Files</h4>
<!-- ko if: Files().length > 0 -->
<table class="table table-condensed table-hover">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Size (bytes)</th>
</tr>
</thead>
<tbody>
<!-- ko foreach: Files -->
<tr data-bind="css: IsValid() ? 'success' : ''">
<td><span data-bind="text: Name"></span>
</td>
<td><span data-bind="text: Type"></span>
</td>
<td><span data-bind="text: Size"></span>
</td>
<td>
<button class="btn btn-sm btn-success" data-bind="click: ValidateFile, visible: !IsValidated()">Validate</button>
<button class="btn btn-sm btn-success" data-bind="click: UploadFile, visible: IsValid()">Upload</button>
</td>
</tr>
<!-- /ko -->
</tbody>
</table>
<!-- /ko -->
</div>
<div class="col-sm-6">
<h4>File Errors</h4>
<!-- ko if: FileErrors() -->
<table class="table table-hovered">
<thead>
<tr>
<th>Name</th>
<th>Error Message</th>
</tr>
</thead>
<tbody>
<!-- ko foreach: Files -->
<!-- ko if: IsValid() == false -->
<tr>
<td data-bind="text: Name"></td>
<td data-bind="text: ValidationErrors"></td>
</tr>
<!-- /ko -->
<!-- /ko -->
</tbody>
</table>
<!-- /ko -->
</div>
</div>
</div>

关于c# - 根据 Controller 响应动态更改 View 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41739118/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com