我是 Web 开发领域的新手,我希望能够通过 . 我在这方面真的没有成功。
我按照本教程能够建立这种连接:http ://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api
我所需要的只是将一些来自 HTML 页面的输入发送到一个 web api,该 web api 接受这些参数并返回一个对象
我正在使用此代码
$.getJSON("api/GeneratorController/setparameters/"+firstparameter+"/"+secondparameter+"/"+thirdparameter+"/"+fourthparameter+"/"+fifthparameter+"/"+sixthparameter,
function (data) {
alert(data); //never comes here
}).fail(function (jqXHR, textStatus, err) {
alert("All checks are correct, image was not generated. jqXHR = " + jqXHR.valueOf() + " textStatus=" + textStatus + " Error" + err);
});
它总是进入失败部分,我附上了由此产生的警报消息
有什么理由这样做吗?
@smartmeta(我更改了错字,谢谢)我听从了您的建议,这是警报的输出(如预期的那样,显示了我插入的值):