作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将 json 数据从 C# Controller 传递到 Angular js ?我想将 json 从 Controller 传递到 Angular js。我尝试了不同的方法,但没有一个有效。请参阅下面的代码,
var app = angular.module('myApp', []);
app.controller('customersCtrl', function ($scope, $http) {
$http.get("/adnActions/getJson")
.success(function (response) { alert(response.records); $scope.names = response.records; });
});
C# Controller 代码
public async Task<string> getJson()
{
data="{'records':[ {'Name':'Alfreds Futterkiste','City':'Berlin','Country':'Germany'}, {'Name':'Ana Trujillo Emparedados y helados','City':'México D.F.','Country':'Mexico'}]}";
return data;
}
但无法获取 Angular JS Controller 中的数据以下是控制台中引发的错误,“错误:JSON.parse:JSON 数据第 1 行第 2 列处的预期属性名称或“}”
如何解决这个问题?这里有什么问题吗?
最佳答案
我怀疑这是因为你的 JSON 的格式。您使用的是单引号还是双引号。有效的 JSON 使用 double quotes 。
这是我运行 json 时得到的结果,我已将响应更改为 HttpResponseMessage 并显式设置响应内容类型以消除此问题。根据您在 Javascript 方面的错误,我认为您的问题是 JSON 中的单引号。
public async Task<HttpResponseMessage> GetJsonSingle()
{
HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent("{'records':[ {'Name':'Alfreds Futterkiste','City':'Berlin','Country':'Germany'}, {'Name':'Ana Trujillo Emparedados y helados','City':'México D.F.','Country':'Mexico'}]}")
};
result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
return result;
}
结果:
双引号:
public async Task<HttpResponseMessage> GetJsonDouble()
{
HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent("{\"records\":[ {\"Name\":\"Alfreds Futterkiste\",\"City\":\"Berlin\",\"Country\":\"Germany\"}, {\"Name\":\"Ana Trujillo Emparedados y helados\",\"City\":\"México D.F.\",\"Country\":\"Mexico\"}]}")
};
result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
return result;
}
工作正常:
关于javascript - 如何将 json 数据从 C# Controller 传递到 Angular js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31250029/
我是一名优秀的程序员,十分优秀!