你好; 如何在 jquery html 应用程序中将 wcf 服务用作远程或本地?我已经准备好了一个 wcf 服务。我想通过 jquery ajax 方法在 html 文件中使用。任何错误都不返回。
与 2010 年相比的 WCF 方面:
public class Service1 : IService1
{
public string GetData(int value)
{
return string.Format("You entered: {0}", value);
}
aptana 工作室中的 HTML:
代码:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js"></script>
$(document).ready(function() {
$("#sayHelloButton").click(function(){
alert("fsf");
$.ajax({
type: "POST",
url: "Service1.svc/GetData",
data: "{'id': '" + 1 + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
AjaxSucceeded(msg);
},
error: AjaxFailed
});
});
});
function AjaxSucceeded(result) {
alert(result.d);
}
function AjaxFailed(result) {
alert(result.status + ' ' + result.statusText);
}
测试
点我家
<div>
</div>
<footer>
<p>© Copyright by yusufkaratoprak</p>
</footer>