Changes between Version 40 and Version 41 of pcauto_4.3.0/interface


Ignore:
Timestamp:
04/23/2014 02:29:19 PM (12 years ago)
Author:
leijingtang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcauto_4.3.0/interface

    v40 v41  
    705705        如果已经登陆并且车系或者车型已经收藏,返回收藏id,否则返回-1 
    706706}}} 
     707 
     708=== 2.22 [=#point222 获取车系图片筛选条件]=== 
     709{{{ 
     710 备注: 
     711 请求URL: 
     712 
     713 HTTP请求方式:get 
     714 是否需要登录:否 
     715 返回格式:json 
     716 缓存方式:无 
     717 缓存时间:无 
     718 请求参数: 
     719 
     720serialId // 车系id,必填 
     721modelId // 车型id,可选,当modelId不为0时,返回参数的models字段为空数组 
     722 
     723 返回参数: 
     724 { 
     725    "models":[ 
     726        { 
     727            "id":123, 
     728            "modelName":"" 
     729        } 
     730... 
     731    ], 
     732    "types":[ 
     733        { 
     734            "id":1, 
     735            "typeName":"外观" 
     736        } 
     737... 
     738    ], 
     739    "colors":[ 
     740        { 
     741            "id":1, 
     742            "colorName":"" 
     743        } 
     744... 
     745    ] 
     746} 
     747 
     748}}}