0

客户:

<script src="http://code.jquery.com/jquery-nightly.min.js" type="text/javascript">      </script>
<script src="JSON.js" type="text/javascript"></script>
<script type="text/javascript">
    function register() {
        var searchRequest = new Object();
        searchRequest.Name = "Chris";

        //var dataToSend = '{"searchRequest":[' + JSON.stringify(searchRequest) + ']}';
        var dataToSend = "JSON";

        var resolution = { r: { Name: "Fred", Rank: 2, SerialNumber: 17268 } };

        // convert object to JSON string  (See http://jollytoad.googlepages.com/json.js)
        var objectAsJson = $.toJSON(resolution);
        alert(objectAsJson);
        $.ajax({
            cache: false,
            type: "POST",
            async: false,
            url: "http://localhost:64202/MyService.svc/" + objectAsJson ,
            data: objectAsJson ,
            //data: dataToSend,
            contentType: "application/json",
            dataType: "html",
            processData: false,
            success: function (data)
            {
                $('body').html(data);
            },
            error: ServiceFailed
        });
    }
    function ServiceFailed(result) {
        alert(result.statusText);
        alert("Failed");
    }
    function ServiceSucceeded(result) {
        debugger;
        alert("Success; " + result.GetDateTimeResult);

    }

    $(document).ready(function () {
        $("#btnGet").click(function () {
            register();
        });
    });

服务接口

[OperationContract, WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped,    RequestFormat = WebMessageFormat.Json,UriTemplate="{reg}")]
//Stream GetDateTime(string message, int x, int y);
string GetDateTime(string reg);

服务

public string GetDateTime(string reg)
{
   //reg = "{\"EMail\": \"hiren@gmail.com\",\"Name\": \"Hiren\",\"Age\": 23,\"Zipcode\": 85 }";
   DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(RegistrationForm));
   UTF8Encoding uniEncoding = new UTF8Encoding();
   MemoryStream stream1 = new MemoryStream();
   stream1.Position = 0;
   var sw = new StreamWriter(stream1, uniEncoding);
   //try
   //{
   sw.Write(reg);
   sw.Flush();//otherwise you are risking empty stream
   stream1.Seek(0, SeekOrigin.Begin);

   // Test and work with the stream here. 
   // If you need to start back at the beginning, be sure to Seek again.
   //}
   //finally
   //{
   //    sw.Dispose();
   //}

   RegistrationForm obj = (RegistrationForm)ser.ReadObject(stream1);
   //var address = new JavaScriptSerializer().Deserialize<RegistrationForm>(reg);
   // return "sa:" + reg.EMail;
   return "sa:";
}
4

2 回答 2

1

尝试从 url 中删除 objectAsJson。放入你的界面

[OperationContract, WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped,  
  RequestFormat = WebMessageFormat.Json,UriTemplate="/GetDateTime")]       
    string GetDateTime();   

并像您一样传递您的数据。

于 2013-06-10T14:20:57.917 回答
0

问题得到了解决,您向我指出的想法只是不需要我们需要做其他事情来使其工作。

于 2013-06-27T12:31:53.153 回答