私の場合、それは次の問題でした:
エラーメッセージ:クラス定義に [ScriptService] 属性を持つ Web サービスのみをスクリプトから呼び出すことができます。
[ScriptService] を Web サービス クラスの定義として配置してみてください。例:
[WebService(Namespace = "http://dnndev/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[ScriptService]
// 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 BusinessDataProvider : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod]
public string[] GetSpecificListOfContributors(string prefixText, int count)
{
return ContributorController.GetSpecificListOfContributors(prefixText, count);
}
}
これがあなたを助けることを願っています。
一番、