Tag: json

将多个JSON对象传递给MVC3操作方法

JQuery代码: //这为“CategoryID”,“CategoryName”,“ProductID”,“ProductName”传递NULL $(“#btnPost”)。click(function(){ var CategoryModel = { CategoryID:1, CategoryName:“饮料” }; var ProductModel = { 产品ID:1, 产品名称:“柴” }; var data1 = {}; data1 [“cat”] = CategoryModel; data1 [“prd”] = ProductModel; var jsonData = JSON.stringify(data1); $就({ url:url +’/ Complex / ModelTwo’,//这样可以,但属性值为null 类型:’post’, dataType:’json’, data:{“cat”:CategoryModel,“prd”:ProductModel},// jsonData, cache:false, 成功:function(结果){ 警报(结果); }, 错误:function(xhr,ajaxOptions,thrownError){ 警报(thrownError); } }); }); MVC代码(C#): public class […]

jQuery多个getJSON请求

我的脚本需要在https://graph.facebook.com/xxxx上获取几个json文件,并从每个json中检索某个字段,然后计算求和。 我的问题是如何在所有getJSON完成后打印出结果? 使用以下代码,它将打印0.随意建议任何更好的方法。 var result = 0; $.each(urls, function (i, url) { $.getJSON(url, function (json) { result += json.field1; }) }); alert(result);

如何使用jquery将数据写入JSON文件

我正在制作一个混合移动应用程序,我需要存储一些数据,例如,如果它是一个游戏:高分等。到目前为止,我能够使用jquery ..从JSON文件读取数据,但是有可能写到JSON文件??! 或者还有其他方法吗? IDE – Eclipse(插件 – IBM worklight studio) 只能使用HTML 5和JS和JQ! 谢谢 (:

Access-Control-Allow-Origin不允许使用Origin’url’

我正在尝试使用以下jquery(虚拟)代码使用Google Currency Calculator获取货币汇率: $.getJSON(“http://www.google.com/ig/calculator?hl=en&q=1” + “DOP” + “=?” + “USD”, function(data) { $(‘.currNumber’).each(function (index) { $(this).html(parseFloat($(this).html()) * 0.02681); }); }); XMLHttpRequest无法加载http://www.google.com/ig/calculator?hl=zh-CN&q=1DOP=?USD 。 Access-Control-Allow-Origin不允许原点’hostURL’。 在网站上看到我发现了关于这个主题的各种主题,但他们主要是指本地文件访问并尝试通过使用附加参数启动chrome来解决它(我也使用chrome)但这不是我的问题,实际上似乎与跨域限制更相关。 所以,问题是:我如何使用jQuery从该url获取费率?

ECONFLICT无法为jquery Foundation找到合适的版本

我正在尝试安装基金会,但它一直让我与Jquery发生冲突 λ bower install foundation bower foundation#x cached https://github.com/zurb/bower-foundation.git#5.5.1 bower foundation#x validate 5.5.1 against https://github.com/zurb/bower-foundation.git#x bower foundation#* cached https://github.com/zurb/bower-foundation.git#5.5.1 bower foundation#* validate 5.5.1 against https://github.com/zurb/bower-foundation.git#* bower jquery#>= 2.1.0 cached https://github.com/jquery/jquery.git#2.1.3 bower jquery#>= 2.1.0 validate 2.1.3 against https://github.com/jquery/jquery.git#>= 2.1.0 bower modernizr#>= 2.7.2 cached https://github.com/Modernizr/Modernizr.git#2.8.3 bower modernizr#>= 2.7.2 validate 2.8.3 against https://github.com/Modernizr/Modernizr.git#>= 2.7.2 bower jquery.cookie#~1.4.0 cached https://github.com/carhartl/jquery-cookie.git#1.4.1 […]

如何合并两个JSON对象数组 – 删除重复项并保留Javascript / jQuery中的顺序?

jsfiddle链接: http : //jsfiddle.net/vN6fn/1/ 假设我有这两个对象: var obj1 = { data: [ {id:1, comment:”comment1″}, {id:2, comment:”comment2″}, {id:3, comment:”comment3″} ] } var obj2 = { data: [ {id:2, comment:”comment2″}, {id:3, comment:”comment3″}, {id:4, comment:”comment4″} ] } 最终对象应如下所示: var final = { data: [ {id:1, comment:”comment1″}, {id:2, comment:”comment2″}, {id:3, comment:”comment3″}, {id:4, comment:”comment4″} ] } 这里有一些要考虑的事情: obj1和obj2可能有也可能没有重复 $.extend()替换对象, $.merge()不会删除重复项(我知道我可以为循环执行,但我正在寻找更好的方法来执行此操作)。

带有JSON数据的jqGrid将表呈现为空

我正在尝试创建一个jqgrid,但表是空的。 表格呈现,但数据未显示。 我从php调用回来的数据是: { “page”:”1″, “total”:1, “records”:”10″, “rows”:[ {“id”:”2:1″,”cell”:[“1″,”image”,”Chief Scout”,”Highest Award test”,”0″]}, {“id”:”2:2″,”cell”:[“2″,”image”,”Link Badge”,”When you are invested as a Scout, you may be eligible to receive a Link Badge. (See page 45)”,”0″]}, {“id”:”2:3″,”cell”:[“3″,”image”,”Pioneer Scout”,”Upon completion of requirements, the youth is invested as a Pioneer Scout”,”0″]}, {“id”:”2:4″,”cell”:[“4″,”image”,”Voyageur Scout Award”,”Voyageur Scout Award is the right after Pioneer […]

将外部JSON加载到ChartJs中

我是一个新手,当使用库来绘制JavaScript中的图表/我刚开始尝试使用Chartjs时,我一直无法使用getJson或其他任何东西来加载我的json对象并替换标签和数据。 我之前使用过HighCharts,与此相比非常简单。 另外,我如何将它放入Angular中的指令并显示它。 https://jsfiddle.net/0u9Lpttx​​/1/ 的index.html data.json [ { “timestamp”: “Monday”, “original_tweet”: “756”, “retweets”: “345”, “shared”: “34”, “quoted”: “14” }, { “timestamp”: “Tuesday”, “original_tweet”: “756”, “retweets”: “345”, “shared”: “34”, “quoted”: “14” }, { “timestamp”: “Wednesday”, “original_tweet”: “756”, “retweets”: “345”, “shared”: “34”, “quoted”: “14” } ] chartJsControl.js var test = []; $.getJSON(“data.json”, function (json) { test.push(json[i].timestamp); }); […]

用于分组JSON数据并在optgroup上填充的GroupBy

我有点失落。 我得到这个JSON: [{ “id”: “210”, “name”: “Name 1”, “category”: “Category 1” }, { “id”: “187”, “name”: “Name 2”, “category”: “Category 1” }, { “id”: “186”, “name”: “Name 3”, “category”: “Category 1” }, { “id”: “185”, “name”: “Name 4”, “category”: “Category 1” }, { “id”: “184”, “name”: “Name 5”, “category”: “Category 1” }, { “id”: “183”, […]

如何创建和克隆JSON对象?

我想知道如何创建一个JSON(JS)对象,然后克隆它。