Asp.net WebService 无法将类型 'System.Int32' 的对象转换为 ty…neric.IDictionary`2[System.String,System.Object]'
Asp.net WebService Cannot convert object of type 'System.Int32' to ty…neric.IDictionary`2[System.String,System.Object]'
我一直在尝试使用 Angular
调用 WebService
我已经使用 Postman 测试了 WebService 和发送请求,它工作正常。
这是 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);
})
方法接受 Int 数据类型。我正在传递 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 请求的屏幕截图
enter image description here
您需要通过:
{fahrenheit: 50}
而不是:
50
这是因为您现有的代码传递了一个数字,但没有指明它映射到哪个 参数。通过显式提及 fahrenheit
,服务器端能够将 50
值映射到适当的方法参数。
我一直在尝试使用 Angular
调用 WebService我已经使用 Postman 测试了 WebService 和发送请求,它工作正常。
这是 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);
})
方法接受 Int 数据类型。我正在传递 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 请求的屏幕截图
enter image description here
您需要通过:
{fahrenheit: 50}
而不是:
50
这是因为您现有的代码传递了一个数字,但没有指明它映射到哪个 参数。通过显式提及 fahrenheit
,服务器端能够将 50
值映射到适当的方法参数。