メトロ UI アプリを開始する前に、json データを返して使用しようとしています。私の Web サービスは json データを返しませんが、常に xml データを返します。これについて私を助けてくれる人がいますか。
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string HelloWorld() {
return "Hello World";
}
HTML ページ
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
var req = new XMLHttpRequest();
xmlhttp.setRequestHeader("Content-Type", "application/json");
function Roll() {
if (req.readyState == 4) {
alert(req.responseText);
alert("exiting");
}
}
function Test() {
alert("starting");
req.open("POST", "http://localhost:58718/testService/Service.asmx/HelloWorld", true);
req.onreadystatechange = Roll;
req.send(null);
}
</script>
</head>
<body>
<button onclick="javascript:Test()">TEST</button>
</body>
</html>