0

我知道 xtype: filefield 是如何工作的,我也意识到文件上传不使用常规的 ajax 方法来读取和写入数据到数据库......

我可以正常设置文件字段,当我单击浏览按钮时,我可以选择必要的文件。

this.fp = Ext.create('Ext.form.Panel', {
           scope: this,
           width: 200,
           frame: true,
           title: 'File Upload Form',
           autoHeight: true,
           bodyStyle: 'padding: 10px 10px 0 10px;',
           items: [
           {
               xtype: 'filefield'

           }
           ],
           buttons: [
           { text: 'Upload',
               handler: function () {
                   var form = this.up('form').getForm();
                   if (form.isValid()) {
                       form.submit({
                           url: 'Upload.aspx',
                           waitMsg: 'Uploading your file...',

                           success: function (form, action) {

                               alert("OK:" + action.result.message);

                           },
                           failure: function (form, action) {
                               alert("Error:" + action.result.message);
                           }

                       });
                   }
               }
           }
           ]


       });

单击上传按钮后会发生什么是问题......我如何将文件上传到服务器端......(sql db)......使用c#

我尝试使用 upload.aspx.cs 创建一个 upload.aspx 页面,这样做只是为了看看它是否有效......

public partial class Upload : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

    HttpContext context = HttpContext.Current;


    if (context.Request.Files.Count > 0)
    {

        BinaryReader file = new BinaryReader(context.Request.Files[0].InputStream);

        string line;
        while ((line = file.ReadString()) != null)
        {

            // sql connection?
        }

    }

    // prepare response
    MessageOb result = new MessageOb();

    result.success = true;

    result.message = "Success";


}
}

但我得到这个错误

Ext.Error: You're trying to decode an invalid JSON String: 

有没有人记录在哪里我可以看到从客户端的 extjs 和服务器端的 c# 将文件上传到 sql db 的通常步骤......或者如果有人能告诉我它是如何完成的,我将非常感激

4

1 回答 1

1

该问题可能与您如何从上传表单提交返回数据有关。Ext.JS 要求响应是 JSON 或 XML,我会验证您没有返回 html 文档。

我认为 MessageOb 以某种方式处理这个......也许?

Uncaught Ext.Error: You're trying to decode an invalid JSON String: Form Submission using Ext JS and Spring MVC

于 2013-01-25T20:37:55.987 回答