使用 Webservice 调用外部 Json 文件使用 ajax 调用
Using Webservice to call external Json file using ajax call
我在 Javascript 文件中有一个 Json 文件和一个 ajax 调用。尝试使用 Hello World asmx 文件模板编写正确的 web 服务方法。我应该在方法中写什么才能使其成为网站上的 display/return/read json 数据?
$(document).ready(function () {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "http://localhost:56537/WebService.asmx/HelloWorld",
data: "{}",
dataType: "json",
success: function (Result) {
debugger;
Result = Result.d;
var data = [];
var dataResource = response
这就是对我有用的解决方案:
[网络方法]
public string HelloWorld() {
using (StreamReader r = new StreamReader(@"C:\Users\data.json"))
{
string json = r.ReadToEnd();
return json;
}
我在 Javascript 文件中有一个 Json 文件和一个 ajax 调用。尝试使用 Hello World asmx 文件模板编写正确的 web 服务方法。我应该在方法中写什么才能使其成为网站上的 display/return/read json 数据?
$(document).ready(function () {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "http://localhost:56537/WebService.asmx/HelloWorld",
data: "{}",
dataType: "json",
success: function (Result) {
debugger;
Result = Result.d;
var data = [];
var dataResource = response
这就是对我有用的解决方案:
[网络方法]
public string HelloWorld() {
using (StreamReader r = new StreamReader(@"C:\Users\data.json"))
{
string json = r.ReadToEnd();
return json;
}