1

在我的项目中,我从服务器加载了一个 xml 文档。我使用 ajax 对此进行了一次调用,并将其设置为一个变量(称为 siteData)。

我在页面上主动对 siteData 进行操作,并允许用户更改他们想要的任何内容。完成这些操作后,我需要将 XML 文档保存到服务器。

我在 MVC 项目服务器端使用 C#。我需要这个方法来接收我用 JavaScript 制作的 XML 文件以便解析它。

我想我有两个选择:

  1. 弄清楚如何通过 C# 接收 siteData 变量并将其设置为参数,而不是我的 C# 方法中的 String。

  2. 将 siteData 转换为字符串并将其发送到我的 C# 方法进行解析。

我不知道如何使任何一个选项起作用。我只想将操作 XML 文件传递​​到我的 C# 方法中以将其保存在服务器上。

我怎样才能做到这一点?

(请注意,我不能使用任何插件或备用库。我使用的是 jQuery 1.7.2 和 C#.NET。)

4

2 回答 2

1

你可以使用网络客户端

http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx

这里有一个样本

 Console.Write("\nPlease enter the URI to post data to : ");
            string uriString = Console.ReadLine();
            // Create a new WebClient instance.
            WebClient myWebClient = new WebClient();
            Console.WriteLine("\nPlease enter the data to be posted to the URI {0}:",uriString);
            string postData = Console.ReadLine();
            // Apply ASCII Encoding to obtain the string as a byte array. 
            byte[] postArray = Encoding.ASCII.GetBytes(postData);
            Console.WriteLine("Uploading to {0} ...",  uriString);                          
         myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded");

            //UploadData implicitly sets HTTP POST as the request method. 
            byte[] responseArray = myWebClient.UploadData(uriString,postArray);

            // Decode and display the response.
            Console.WriteLine("\nResponse received was :{0}", Encoding.ASCII.GetString(responseArray));
于 2012-08-17T21:59:38.637 回答
1

您可以编写自定义模型绑定器。让我们举个例子。假设您有以下控制器:

public class HomeController : Controller
{
    // Serve the view initially
    public ActionResult Index()
    {
        return View();
    }

    // This will be called using AJAX and return an XML document to the
    // client that will be manipulated using javascript
    public ActionResult GetXml()
    {
        return Content("<foo><bar id=\"1\">the bar</bar></foo>", "text/xml");
    }

    // This will be called using AJAX and passed the new XML to persist
    [HttpPost]
    public ActionResult Save(XDocument xml)
    {
        // TODO: save the XML or something
        return Json(new { success = true });
    }
}

在客户端上,我们可以有以下 javascript:

<script type="text/javascript">

    // send an AJAX request to retrieve the XML initially
    $.ajax({
        url: '@Url.Action("getxml")',
        type: 'GET',
        cache: false,
        success: function (data) {
            // The data variable will contain the initial xml
            // Now let's manipulate it:
            $(data).find('bar').attr('id', '7');

            var xmlString = data.xml ? data.xml : (new XMLSerializer()).serializeToString(data);

            // Let's send the modified XML back to the server using AJAX:
            $.ajax({
                url: '@Url.Action("save")',
                type: 'POST',
                contentType: 'text/xml',
                data: xmlString,
                success: function (result) {
                    // ...
                }
            });
        }
    });
</script>

最后一部分是为 XDocument 类型编写自定义模型绑定器,以便 Save 控制器操作可以获取 XDocument:

public class XDocumentModelBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var request = controllerContext.HttpContext.Request;
        if (!request.ContentType.StartsWith("text/xml", StringComparison.OrdinalIgnoreCase))
        {
            return null;
        }
        return XDocument.Load(request.InputStream);
    }
}

将在 Application_Start 中注册并与 XDocument 类型相关联:

ModelBinders.Binders.Add(typeof(XDocument), new XDocumentModelBinder());
于 2012-08-18T07:56:54.953 回答