我创建了一个 web 方法,现在我在我的 java 脚本文件中调用它,但是它给出了一个路径错误,它无法找到我给出的路径..
Web方法代码是:
[System.Web.Services.WebMethod]
public static int ItemCount(string itemId)
{
int val = 0;
Item itm = Sitecore.Context.Database.GetItem(itemId);
val = itm.Children.Count;
return val;
}
java脚本函数调用如下:
function GetItemCount(itemId) {
var funRes = "";
debugger;
try {
if (itemId != null) {
jQuery.ajax({
cache: false,
type: "POST",
contentType: "application/json; charset=utf-8",
url: "/Views/GetItem.aspx/ItemCount",
data: { itemId: itemId },
dataType: "json",
async: false,
success: function (data) {
funRes = data.result;
},
error: function(err) {
alert(err.responseText);
}
});
}
} catch (ex) {
alert(ex.message);
}
return funRes;}
虽然我给出了 C# 方法类的确切路径,但它不起作用在控制台上给出错误,谁能告诉我我在这里缺少什么..