“消息" :“无效的Web服务调用,缺少参数值:\ u0027 [英] "Message" : "Invalid web service call, missing value for parameter: \u0027

查看:318
本文介绍了“消息" :“无效的Web服务调用,缺少参数值:\ u0027的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我从jQuery向WebMethod发送参数时出现此错误

I got this error when i send a parameter from jQuery to WebMethod

{消息":无效的Web服务调用,缺少参数值:\ u0027personelName \ u0027.","StackTrace":位于System.Web.Script.Services.WebServiceMethodData.CallMethod(对象目标, IDictionary 2 parameters)\r\n at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary 2个参数)\ r \ n在System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext上下文,WebServiceMethodData methodData,IDictionary`2 rawParams)\ r \ n在System.Web.Script.Services.RestHandler. ExecuteWebServiceCall(HttpContext context,WebServiceMethodData methodData)," ExceptionType:" System.InvalidOperationException}

{"Message":"Invalid web service call, missing value for parameter: \u0027personelName\u0027.","StackTrace":" at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary2 parameters)\r\n at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary2 parameters)\r\n at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData, IDictionary`2 rawParams)\r\n at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}

我的aspx页面

 <%@ Page Language="C#" AutoEventWireup="true"                  CodeBehind="denemeAutoComp.aspx.cs" Inherits="AutoCompleteDeneme.denemeAutoComp"        %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<link href="Style/jquery-ui-1.10.4.custom.min.css" rel="stylesheet"   type="text/css" />
<script src="Script/jquery-1.10.2.js" type="text/javascript"></script>
<script src="Script/jquery-ui-1.10.4.custom.min.js" type="text/javascript">    
<script type="text/javascript">

    $(document).ready(function () {
        $('#txtPersonelName').autocomplete({

            source: function (request, response) {

                $.ajax({

                   url: '<%=ResolveUrl("~/PersonelService.asmx/GetPersonelNames") %>',
                    data: "{ 'searchTerm': '" + request.term + "' }",
                     type: "POST",
                     dataType: "json",
                    contentType: "application/json; charset=utf-8",
                    success: function (result) {
                        response(result.d);
                    },

                    error: function (result) {
                        alert('there is a problem processing your request');
                        alert(result.responseText);
                    }
                });
            }




        });
    });

</script>
</head>
<body>
<form id="form1" runat="server">
    <div style="font-family: Arial" class="divAuto">
        Name:
    <asp:TextBox ID="txtPersonelName" runat="server"></asp:TextBox>
        <asp:Button ID="btnSubmit" runat="server" Text="Submit" />
        <br />
        <asp:GridView ID="gvPersonels" runat="server">
        </asp:GridView>


    </div>

</form>
</body>
</html>

我的Web服务(PersonelService.asmx)

My Web Service(PersonelService.asmx)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web.Script.Services;

namespace AutoCompleteDeneme
{

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX,      uncomment the following line. 
[System.Web.Script.Services.ScriptService]
public class PersonelService : System.Web.Services.WebService
{

    [WebMethod]
    public List<string> GetPersonelNames(string personelName)
    {

        string CS =   ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString;
        List<string> personelNames = new List<string>();
        using (SqlConnection con = new SqlConnection(CS))
        {
            SqlCommand cmd = new SqlCommand("spGetMatchingPersonelNames", con);
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter parameter = new SqlParameter("@PersonelName", personelName);
            cmd.Parameters.Add(parameter);
            con.Open();
            SqlDataReader rdr = cmd.ExecuteReader();
            while (rdr.Read())
            {
                personelNames.Add(rdr["adi"].ToString());

            }
        }
        return personelNames;


    }
}
}

推荐答案

使用JSON时,所有字符串都必须括在双引号"中,而不是单引号'中. \u0027是单引号,并且可能是API抱怨的内容.因此,如果您替换

When using JSON, all strings have to be enclosed in double quotes ", not single quotes '. \u0027 is a single quote, and is probably what the API is complaining about. So if you replace

data: "{ 'searchTerm': '" + request.term + "' }",

使用

data: '{ "searchTerm": "' + request.term + '" }',

可能有效.

这篇关于“消息" :“无效的Web服务调用,缺少参数值:\ u0027的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆