我需要从 ajax 调用 wcf 服务。我的网络服务类如下
public class AjaxService : IAjaxService
{
readonly Dictionary<string,int> _countryPostalCode = new Dictionary<string, int>
{
{"Bangladesh",1000},
{"India",2000},
{"Japan",3000}
};
public int PostalCode(string countryName)
{
return _countryPostalCode[countryName];
}
}
我怎样才能从ajax调用它?如果有人用例子解释它,这对我很有帮助。