如何上传 CSV 文件并在客户端本身读取其数据并通过 ajax post 将数据作为流发送?

发布于 2024-10-18 23:56:33 字数 242 浏览 2 评论 0原文

我需要上传 CSV 文件并从客户端本身获取其内容。然后将其发布到服务器,我可以在其中检索流并在服务器操作方法中执行字符串操作。 是否有任何 jquery 插件可以执行此任务来上传 csv 文件并使用 ajax 或 jason 以流形式发送数据? 我对这个领域真的很陌生。我正在 VS2010 和 mvc3 中工作。

有人可以给我一个明确的解决方案吗? 有例子吗??我确实进行了很多搜索,但尚未找到任何合适的解决方案。 谁能帮我解决这个问题吗? 非常感谢。

I need to upload a CSV file and get its contents form the client side itself. Then post it to the server where I can retriev the stream and do the string manipulations in the serer action methods.
Is there any jquery plugin for this task to upload a csv file and send data as a stream using ajax or jason?
I am really new to this area.I am working in VS2010 AND mvc3.

Can some one give me a clear solution for this mater??
Any examples?? I did search a lot but did not find any suitable solution yet.
Can anyone please help me with this matter.
Thanks so much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-10-25 23:56:33

在您的操作方法中,您可以执行以下操作:

public ActionResult ProcessFile(HttpPostedFileBase uploadedFile){
Stream stream = uploadedFile.InputStream;

// Do something with the data

}

In your action method you can do something like:

public ActionResult ProcessFile(HttpPostedFileBase uploadedFile){
Stream stream = uploadedFile.InputStream;

// Do something with the data

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文