我正在尝试在 VS 2010 中设置一个非常简单的 Web 方法调用,但失败得很惨。完全相同的设置在 VS2008 中工作,我无法弄清楚差异在哪里。代码如下:
test.aspx ajax 调用(我也试过没有本地主机):
$(document).ready(function ()
{
$("#btnAjax").click(function ()
{
var testData = "test";
$.ajax({
type: "POST",
url: "http://localhost/test.aspx/Test",
data: JSON.stringify({ test: testData }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg)
{
alert("ok");
},
error: function (xhr, err)
{
alert("readyState: " + xhr.readyState + "\nstatus: " + xhr.status);
alert("responseText: " + xhr.responseText);
}
})
});
});
test.aspx.cs(断点显示方法永远不会到达):
[WebMethod()]
public static string Test(string test)
{
return "xyz";
}
web.config(我从有效的 VS2008 版本中获取了那些):
<modules>
<remove name="ScriptModule"/>
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/>
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</handlers>
返回的就绪状态始终为 0,响应文本为空;firebug 显示正确的数据已发布,响应选项卡显示页面 html;我以前不必使用 firebug 调试器,所以也许我应该看看更多的东西。控制台/网络已启用,但我没有看到任何明显的东西。
我搜索了很多,但找不到任何有帮助或我还没有尝试过的东西。一句话,我不知道还能去哪里看……
也许一个指针可能是我最初尝试实现 WCF 服务但它一直因“身份验证失败”而失败 - 从我读到的内容与 IIS 设置有关,但我发现没有一篇文章有效。因为它不一定是 WCF,所以我最终想回到基础,即这个简单的 web 方法。我不知道如何验证这是身份验证问题还是其他问题。让我认为这不是 VS2008 版本与完全相同的服务器一起工作的事实。
任何建议都非常感谢。