Asp.net WebService无法将类型为'System.Int32'的对象转换为ty…neric.IDictionary`2 [System.String,System.Object]'

时间:2019-09-28 11:21:29

标签: c# asp.net angular web-services asmx

我一直在尝试使用Angular调用WebService

我已经测试过WebService并使用Postman发送请求,并且它可以正常工作。

这是WebService的代码

[WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.Web.Script.Services.ScriptService]
    [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 Temperature : System.Web.Services.WebService
    {
        [WebMethod]
        public double Farenheit(double celsius)
        {
            return  (celsius * 9) / 5 + 32;
        }
        [WebMethod]
        public double Celsius(double fahrenheit)
        {
            return (fahrenheit - 32) * 5 / 9;
        }
    }

这是我的Angular代码

const httpOptions = {
      headers: new HttpHeaders({
        'Content-Type':  'application/json',

      })
    };

this.http.post('https://localhost:44389/Temperature.asmx/Celsius', 50,  httpOptions)
    .subscribe(res => {
      console.log('Data: ' + res);

    })

该方法接受一个I​​nt数据类型。我正在传递50整数。那么,为什么我会收到此错误。我不明白为什么

ExceptionType: "System.InvalidOperationException"
Message: "Cannot convert object of type 'System.Int32' to type 'System.Collections.Generic.IDictionary`2[System.String,System.Object]'"
StackTrace: "   at System.Web.Script.Serialization.ObjectConverter.ConvertObjectToTypeInternal(Object o, Type type, JavaScriptSerializer serializer, Boolean throwOnError, Object& convertedObject)
↵   at System.Web.Script.Serial

这是POSTMAN requset的屏幕截图

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要通过:

{fahrenheit: 50}

而不是:

50

这是因为您现有的代码传递了一个数字,但没有指出它映射到的参数。通过明确提及fahrenheit,服务器端可以将50值映射到适当的方法参数。