var commodityRateList={ nErrNo:0, nCurPage:1, nTotalPage:1, nTotalRecord:5, commodityId:"10366FB100000000040100003A04BED8",nContentEvalNum:2,nCommodityD:1010,nCommodityDNum:206,nCommodityGoodNum:4,nCommodityNormalNum:0,nCommodityBadNum:0, evalList:[ { sDealId:"2976855568-20140901-1304756091", buyerId:"1747681081", buyerName:"1747681081 ", peerEvalLevel:"3", peerEvalContent:"卖家什么都好 宝贝也好跟描述的一样 就是快递服务超差 严重鄙视 希望换换快递 ", peerScore:"1", peerTime:"2014-09-03 17:55:19", peerEvalReason:"", buyerCredit:"6",commodityProperty:"颜色:蓝红条纹|尺码:S ", smallImgUrl:[ null ], bigImgUrl:[ null ], replyList:[ null ] }, { sDealId:"2976855568-20140825-1303451390", buyerId:"0", buyerName:"韦*", peerEvalLevel:"3", peerEvalContent:"和描述一模一样,很喜欢,面料还行 ", peerScore:"1", peerTime:"2014-09-01 17:12:27", peerEvalReason:"", buyerCredit:"6",commodityProperty:"颜色:蓝红条纹|尺码:L ", smallImgUrl:[ null ], bigImgUrl:[ null ], replyList:[ null ] }, { sDealId:"2976855568-20140729-1297280021", buyerId:"0", buyerName:"清*", peerEvalLevel:"3", peerEvalContent:"好评! ", peerScore:"1", peerTime:"2014-08-24 15:41:06", peerEvalReason:"", buyerCredit:"726",commodityProperty:"颜色:蓝红条纹|尺码:XXXL ", smallImgUrl:[ null ], bigImgUrl:[ null ], replyList:[ null ] }, { sDealId:"2976855568-20140725-1296264237", buyerId:"0", buyerName:"清*", peerEvalLevel:"3", peerEvalContent:"好评! ", peerScore:"1", peerTime:"2014-08-19 16:45:16", peerEvalReason:"", buyerCredit:"726",commodityProperty:"颜色:蓝红条纹|尺码:XXXL ", smallImgUrl:[ null ], bigImgUrl:[ null ], replyList:[ null ] }, { sDealId:"2976855568-20140711-1292446238", buyerId:"1143355415", buyerName:"童真·母爱·自然 ", peerEvalLevel:"3", peerEvalContent:"好评! ", peerScore:"1", peerTime:"2014-08-07 12:23:32", peerEvalReason:"", buyerCredit:"1",commodityProperty:"颜色:蓝红条纹|尺码:XL ", smallImgUrl:[ null ], bigImgUrl:[ null ], replyList:[ null ] }, null ] };try{commodityRateListCallBack(commodityRateList,0);}catch(e){};
这个能通过json_decode转换成数组吗,数据地址是:http://shop1.paipai.com/cgi-bin/creditinfo/NewCmdyEval?sCmdyId=10366FB100000000040100003A04BED8&nCurPage=1&nTotal=0&resettime=1&nFilterType=1&nSortType=11&nActionId=0.4005179960111874&g_tk=1891059028&g_ty=ls
回复讨论(解决方案)
可以是可以,不过格式化的工作量太大
自己慢慢弄吧
看api??是?js提供的
可用js?取json,不用decode。它?回?commodityRateListCallBack??方法的,
try{commodityRateListCallBack(commodityRateList,0);}catch(e){};
所以???方法就可以?取了,完整代?。
<script type="text/javascript"> function commodityRateListCallBack(commodityRateList,flag){ alert(commodityRateList['commodityId']); // ??只?了一??性,其他你按名?去?取就可以了,例如commodityRateList['nErrNo'] } </script> <script type="text/javascript" src="http://shop1.paipai.com/cgi-bin/creditinfo/NewCmdyEval?sCmdyId=10366FB100000000040100003A04BED8&nCurPage=1&nTotal=0&resettime=1&nFilterType=1&nSortType=11&nActionId=0.4005179960111874&g_tk=1891059028&g_ty=ls"></script>

C语言数组初始化的三种方式:1、在定义时直接赋值,语法“数据类型 arrayName[index] = {值};”;2、利用for循环初始化,语法“for (int i=0;i<3;i++) {arr[i] = i;}”;3、使用memset()函数初始化,语法“memset(arr, 0, sizeof(int) * 3)”。

php求2个数组相同元素的方法:1、创建一个php示例文件;2、定义两个有相同元素的数组;3、使用“array_intersect($array1,$array2)”或“array_intersect_assoc()”方法获取两个数组相同元素即可。

Part1聊聊Python序列类型的本质在本博客中,我们来聊聊探讨Python的各种“序列”类,内置的三大常用数据结构——列表类(list)、元组类(tuple)和字符串类(str)的本质。不知道你发现没有,这些类都有一个很明显的共性,都可以用来保存多个数据元素,最主要的功能是:每个类都支持下标(索引)访问该序列的元素,比如使用语法Seq[i]。其实上面每个类都是使用数组这种简单的数据结构表示。但是熟悉Python的读者可能知道这3种数据结构又有一些不同:比如元组和字符串是不能修改的,列表可以

c++初始化数组的方法:1、先定义数组再给数组赋值,语法“数据类型 数组名[length];数组名[下标]=值;”;2、定义数组时初始化数组,语法“数据类型 数组名[length]=[值列表]”。

增加元素的方法:1、使用unshift()函数在数组开头插入元素;2、使用push()函数在数组末尾插入元素;3、使用concat()函数在数组末尾插入元素;4、使用splice()函数根据数组下标,在任意位置添加元素。

php判断数组里面是否存在某元素的方法:1、通过“in_array”函数在数组中搜索给定的值;2、使用“array_key_exists()”函数判断某个数组中是否存在指定的key;3、使用“array_search()”在数组中查找一个键值。

php去除第一个数组元素的方法:1、新建一个php文件,并创建一个数组;2、使用“array_shift”方法删除数组首个元素;3、通过“print_”r输出数组即可。

在Go语言中,数组是一种重要的数据类型。它与其他语言的数组一样,是一组相同类型的数据组成,可以通过一个索引来访问数组中的元素。在某些情况下,我们需要从一个数组中删除元素,本文将会介绍在Go语言中如何实现数组删除。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
