- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 asp mvc,并且我正在像这样在程序的一部分中获取数据
public List<IncidentPerAreaCount> getIncident()
{
int RondeboschCounter = 0;
int ClaremontCounter = 0;
int AthloneCounter = 0;
List<IncidentPerAreaCount> IncidentAreaCount = new List<IncidentPerAreaCount>();
IncidentPerAreaCount Rondebosch = new IncidentPerAreaCount();
IncidentPerAreaCount Claremont = new IncidentPerAreaCount();
IncidentPerAreaCount Athlone = new IncidentPerAreaCount();
List<Report> Reports = GetReports();
for (int i = 0; i < Reports.Count(); i++)
{
if (Reports.AsEnumerable().ElementAt(i).Area == "Rondebosch")
{
RondeboschCounter++;
}
else if (Reports.AsEnumerable().ElementAt(i).Area == "Claremont")
{
ClaremontCounter++;
}
else if (Reports.AsEnumerable().ElementAt(i).Area == "Athlone")
{
AthloneCounter++;
}
}
Rondebosch.AreaName = "Rondebosch";
Rondebosch.NumberOfIncidents = RondeboschCounter;
Claremont.AreaName = "Claremont";
Claremont.NumberOfIncidents = ClaremontCounter;
Athlone.AreaName = "Athlone";
Athlone.NumberOfIncidents = AthloneCounter;
IncidentAreaCount.Add(Rondebosch);
IncidentAreaCount.Add(Claremont);
IncidentAreaCount.Add(Athlone);
return IncidentAreaCount;
}
然后我尝试通过 Jquery 获取这个字符串
var Reports = [];
$.ajax({
url: "Home/getIncident",
async: false,
dataType: 'json',
success: function (json) { Reports = json.whatever; }
});
alert(Reports);
但是,警报函数始终显示为空(即空文本框),而不是包含数据的 json 格式字符串。
请帮忙...
最佳答案
您将警报放在了错误的位置。
$.ajax({
url: "Home/getIncident",
async: false,
dataType: 'json',
success: function (json) {
Reports = json.whatever;
alert(Reports); // should be here.
}
});
关于jquery - 通过 Jquery 获取 jsonString 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10984137/
我有一个名为 MediaList 的类,我想将这个类的值解析为 JSON 字符串并向后解析。 public class KeywordList { private List keywor
我尝试使用@NotNull注释,但它不起作用。如果 JsonString 中缺少任何字段,则会给出 null(String) 或 zero(int)。但我想要的是,如果类中定义的 JsonStr 中缺
这个问题已经有答案了: How to use Jackson to deserialise an array of objects (10 个回答) 已关闭 3 年前。 不是 How to use J
我的代码如下所示: ServiceHandler sh = new ServiceHandler(); // Making a request to url and g
我使用 ajaxCall 返回一个数组,如下所示: http://d.pr/i/ojR4 对象内部是 Json (例如: http://d.pr/i/aAM2 )当我将其推送到我的 .hbs 文件(主
String fileURL="https://tools.keycdn.com/geo.json?host=192.168.6.9"; URL url = new URL(fileURL);
JSON 字符串看起来像 { {"widget": { "debug": "on", "window": { "title": "Sample Konfabulator
Web 服务正在返回 jsonString。解析后,我必须将其值绑定(bind)到表中。 最简单的方法是查找字符串中的每个对象。例如:我的字符串以以下格式返回: { "Table1": [
我得到了以下 json: { "ID": "1234567", "dangereousCargo": true, "numberOfPassangers": 164,
我得到以下 JSONString通过 HTTP Request .我想要所有 amount此字符串中的值。 到目前为止我试过这个: try { // Getting JSON Array
我正在使用 Web 服务创建 C# 应用程序。在我的 Web 服务中,我使用了 JSONString 数据。但我无法将此字符串转换为 DataSet。 我的 JSONString 是: { "
这个问题在这里已经有了答案: 9年前关闭。 Possible Duplicate: What is the difference between JSON and Object Literal Not
我正在构建一个 json 数组,我需要 json 数据的结构如下例所示。具体来说,我需要 "success": 1 和 "result": [ ] 来仅环绕数组中的对象一次。但是,我的代码在每个数组开
我收到这样的回复 String result = responseEntity.getBody(); { "FailureReason": "", "State": "True",
我是 iOS 新手。我创建了一个 JSON NSDictionary像这样: NSArray *keys = [NSArray arrayWithObjects:@"User", @"Password
JsonString.txt { "profile": { "name": { "formatted": "John Jackson", "givenName": "John", "familyNam
我在 json 数据中有一个名为“content”的参数,我想从中获取图像 url 并在 ImageView 中动态显示该图像。 我已经尝试了 Pattern 和 Matcher 类,我正确地获取了第
我在 JSONString 中发送 4 个不同的值。我需要以某种方式(解码?)将它们转换为 PHP 值,以将其发送到 MySQL 数据库。 此函数将 is 发送到 php 文件: - (void)my
我是 Swift 的新手,我正在将 JsonObject 作为字符串获取,我想获取 LoginStatus 的值,我该如何解析它 { "ID":16, "NameSurname":"UĞU
我正在实现一个实用方法来将 queryString 转换为 JsonString。 我的代码如下: public static string GetJsonStringFromQuer
我是一名优秀的程序员,十分优秀!