尝试在aspx页面上调用web方法时获取aspx页面html。这是jQuery代码
$(function () {
$.ajax({
type: 'POST',
url: 'Default.aspx/Hello',
data: "{}",
async: false,
success: function (response) {
console.log('Success: ', response);
},
error: function (error) {
console.log('Error: ', error);
}
});
});
这是网络方法代码
[System.Web.Services.WebMethod]
public static string Hello()
{
string returnString = "hoiiiiiii";
return returnString;
}
任何人都可以指出可能出错的地方。
答案 0 :(得分:3)
两件事:
contentType
函数中的.ajax()
。您需要在JSON响应中考虑.d
值。
$.ajax({
type: "POST",
url: "Default.aspx/Hello",
data: "{}",
async: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(result) {
if (result.hasOwnProperty("d")) {
// The .d is part of the result so reference it
// to get to the actual JSON data of interest
console.log('Success: ', result.d);
}
else {
// No .d; so just use result
console.log('Success: ', result);
}
}
});
注意:
.d
语法是Microsoft在ASP.NET AJAX的ASP.NET 3.5版本中提供的反XSS保护;因此,检查.d
属性是否存在。
答案 1 :(得分:2)
你可以像这样编码:(这对我很有用) 我使用了CDN的jquery:“http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js”
public class MyClass
{
public string myName
{
get { return "Hello"; }
}
}
在你的aspx.cs页面中:
[WebMethod]
[System.Web.Script.Services.ScriptMethod(ResponseFormat = System.Web.Script.Services.ResponseFormat.Json, UseHttpGet = true)]
public static object MyMethod()
{
return new MyClass();
}
在你的ASPX页面中:
$.ajax({
url: "somepage.aspx/MyMethod",
data: {},
cache: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
type: "GET",
success: function (data) {
if (data.hasOwnProperty("d"))
alert(data.d.myName);
else
alert(data);
},
error: function (reponse) {
alert(reponse);
}
});
答案 2 :(得分:0)
试试这个 -
$(function () {
$.ajax({
type: 'GET',
url: 'Default.aspx/Hello',
contentType: "application/json; charset=utf-8",
async: false,
dataType: "json",
success: function (response) {
console.log('Success: ', response);
},
error: function (error) {
console.log('Error: ', error);
}
});
});
和网络方法 -
[WebMethod]
[ScriptMethod(UseHttpGet = true)]
public static string Hello()
{
string returnString = "hoiiiiiii";
return returnString;
}