预订宝/getHotelList
来自站长百科
getHotelList概述[ ]
- 接口地址:http://api.yudingbao.net/v1.0/hotel/search.ashx?act=getHotelList
- 动作标识:getHotelList
- 参数:见参数说明
- 请求方式:GET
- 响应模式:JSON、JSONP、XML
注意:动作标识是大小写敏感的,请养成良好的编码习惯!
参数说明[ ]
参数名称 | 参数类型 | 说明 | ||
---|---|---|---|---|
1 | country | string | 国家。对于国内酒店,取值恒为“中国”。该参数无需输入,这是默认的。 | |
列出此参数是为了向后兼容,当前可以忽略。 | ||||
2 | regionCode | string | 区域编号。该参数是可选的。该参数极少使用。 | |
3 | provinceCode | string | 省份编号。该参数是可选的。该参数极少使用。 | |
4 | cityCode | string | 城市编号。该参数是必填的。 | |
5 | districtCode | string | 行政区编号。该参数是可选的。 | |
6 | businessZoneCode | string | 商业区编号。该参数是可选的。 | |
7 | checkInDate | date | 入住日期。该参数是必填的。日期格式如为“yyyy-MM-dd”。 | |
8 | checkOutDate | date | 退房日期。该参数是必填的。日期格式如为“yyyy-MM-dd”。 | |
9 | categories | string | 酒店星级序列。该参数是可选的。 | |
如果需要多个星级的组合,请将表示酒店星级的数字串联起来即可。 | ||||
例如“1235”表示查询星级为一星级、二星级、三星级或五星级的酒店。 | ||||
酒店星级的数字定义如下: | ||||
0 —— 未评星 | ||||
1 —— 一星级 | ||||
2 —— 二星级 | ||||
3 —— 三星级 | ||||
4 —— 四星级 | ||||
5 —— 五星级 | ||||
10 | lowestPrice | double | 最低房价。如设定此参数的值,则低于该值的房价排期将不会被列出。 | |
该参数是可选的。默认为0,即不限制。 | ||||
11 | highestPrice | double | 最高房价。如设定次参数的值,则高于该值的房价排期将不会被列出。 | |
该参数是可选的。默认为0,即不限制。 | ||||
12 | broadbandService | int | 宽带服务。该参数是可选的。宽带服务参数的定义如下: | |
0 —— 不限制。 | ||||
1 —— 收费。提供上网服务,但要收费。 | ||||
2 —— 免费。免费提供上网服务。 | ||||
13 | keyword | string | 关键字。该参数是可选的。关键字在酒店名称和酒店地址中进行匹配。 | |
14 | landmark | string | 地标名。该参数是可选的。 | 这四个参数提供了基本的地图搜索支持。 |
15 | lng | double | 经度值。该参数是可选的。默认为0。 | 三个参数的值必须同时被指定才能生效。 |
16 | lat | double | 纬度值。该参数是可选的。默认为0。 | radius以米为单位。 |
17 | radius | double | 查询半径。该参数是可选的。默认为0。 | |
18 | pageIndex | int | 当前页码。页码必须是大于等于1的整数值。 | |
19 | pageSize | int | 页面大小。即每页最多输出的项目数,最多不能超过30。 | |
20 | sortType | int | 排序方式。该参数是可选的。 | |
表示排序类型的数字的具体定义如下: | ||||
0 —— 默认排序,作用同14; | ||||
1 —— 距离升序排列。当启用地图搜索时有效; | ||||
2 —— 距离降序排列。当启用地图搜索时有效; | ||||
3 —— 星级升序。 | ||||
4 —— 星级降序。 | ||||
5 —— 总价升序。 | ||||
6 —— 总价降序。 | ||||
7 —— 最低价升序。 | ||||
8 —— 最低价降序。 | ||||
9 —— 最高价升序。 | ||||
10 —— 最高价降序。 | ||||
11 —— 均价升序。 | ||||
12 —— 均价降序。 | ||||
13 —— 评级升序。 | ||||
14 —— 评级降序。 | ||||
21 | includeNonBooking | bool | 指示响应结果是否应当包含不可预订的酒店或房间。 | |
该参数是可选的。默认为true。 | ||||
22 | includeGuaranteeable | bool | 指示响应结果是否应当包含需要担保才能入住的酒店或房间。 | |
该参数是可选的。默认为true。 | ||||
23 | chainBrands | int | 连锁品牌序列。如果需要同时筛选多个品牌,请以英文“,”将每个id隔开。 | |
每次最多只接受10个品牌的筛选。 | ||||
品牌id可以通过getHotelChainBrands接口获取。 |
数据格式[ ]
- 响应头:
- Status:0为正常,非0表示处理请求时发生异常,通常是参数校验错误;
- Messages:当Status为非0时该字段肯定包含一条或多条消息文本;
- 响应体:
- 酒店信息中可能出现以下几个置换符,调用数据时应当做相应处理:
替代符标签 | 说明 | |
1 | {$Website.Domain$} | 应当替换为您自己网站的域名。 |
2 | {$Website.Name$} | 应当替换为您自己的网站名。 |
- 本接口输出的响应体包含分页数据、酒店列表数据和地标数据;
- 分页数据包含以下内容:
- TotalItemCount:符合当前查询条件的项目总数;
- TotalPageCount:分页总数,即最大页码;
- PageSize:页面大小,即每页显示多少项目;
- PageIndex:当前页码;
- SortType:排序方式,请参考上一节中的参数说明。
- 酒店列表是一个数组,关于酒店的数据格式请参考酒店基础信息;
- 地标数据仅当用户按地图搜索时有效:
- Landmark:查询时使用的地标名;
- Lng:查询时使用的经度值;
- Lat:查询时使用的纬度值;
- Radius:查询时使用的查询半径,以米为单位;
- 如果是按地图搜索的,则每个Hotels.item节点都会包含一个Distance属性,该属性表示该节点所表示的酒店与指定的经纬度之间的距离。
- 下面表格说明了房价排期数据的格式:
参数名称 | 参数类型 | 说明 | |||
---|---|---|---|---|---|
本表格介绍的是“RatePlans”节点的数据格式。 | |||||
1 | _id | string | 房价排期编号。 | ||
2 | Name | string | 房价排期别名。 | ||
3 | Rates | array | 包含每日排期情况的数组。 | ||
Date | date | 日期。 | |||
RetailRate | double | 该日前台价,即客人直接在前台入住的价格。 | |||
MemberRate | double | 该日会员价,即客人通过网站预订入住的价格。 | |||
AddBedRate | double | 该日加床价。 | |||
CanBook | bool | 指示该日是否可预订。当该日满房时CanBook的值为false。 | |||
4 | TotalPrice | double | 在查询日期段之内该房型的总房价。 | ||
5 | LowestPrice | double | 在查询日期段之内该房型的最低价。 | ||
6 | HighestPrice | double | 在查询日期段之内该房型的最高价。 | ||
7 | AveragePrice | double | 在查询日期段之内该房型的平均价。 | ||
8 | AverageRetailPrice | double | 在查询日期段之内该房型的平均前台价。 | ||
9 | NonBookingPercentage | double | 在查询日期段之内该房型的满房率。满房率越高排序越靠后。 | ||
10 | IsGuaranteeable | bool | 如果为true,则该房价排期预订时需要信用卡担保。 | ||
默认最晚到店时间为20:00,房间数为1间。 | |||||
11 | GuaranteeableMessage | string | 当IsGuaranteeable为true时,该属性包含担保描述信息。 | ||
12 | GaranteeRules | array | 包含担保规则的集合。无需担保时为空数组。 | ||
担保规则相当复杂,解析方法请看本节尾部的代码。 | |||||
RuleMode | int | 担保类型。数字定义如下: | |||
0 —— 未指定; | |||||
1 —— 时间担保; | |||||
2 —— 房量担保; | |||||
Gage | int | 担保凭据。数字定义如下: | |||
0 —— 未指定; | |||||
1 —— 信用卡; | |||||
DateReference | int | 时间担保的判断基准。数字定义如下: | |||
0 —— 未指定; | |||||
1 —— 入住日期; | |||||
2 —— 在店日期(暂无用); | |||||
3 —— 预订日期; | |||||
ActivationDate | date | 担保规则的生效日期。 | |||
ExpirationDate | date | 担保规则的过期日期。 | |||
WeekSet | array | 担保规则的每周有效日的集合。数字定义如下: | |||
0 —— 星期日; | |||||
1 —— 星期一; | |||||
2 —— 星期二; | |||||
3 —— 星期三; | |||||
4 —— 星期四; | |||||
5 —— 星期五; | |||||
6 —— 星期六; | |||||
IsArriveTimeVouch | bool | 指示当前担保规则是否需要校验到店时间。 | |||
ArriveStartTime | date | 需要担保的到店的最早时间。 | |||
ArriveEndTime | date | 需要担保的到店的最晚时间。 | |||
IsTomorrow | bool | 指示ArriveEndTime的值是否为第二天。 | |||
IsRoomCountVouch | bool | 指示当前担保规则是否需要校验房量。 | |||
RoomCount | int | 房量担保的最少房间数。 | |||
IsChange | bool | 指示按照当前担保规则下单后是否允许变更或取消。 | |||
ChangeRule | int | 订单变更方式。数字定义如下: | |||
0 —— 未指定; | |||||
1 —— 不允许变更取消; | |||||
2 —— 允许变更或取消,但需要XX日YY时之前通知; | |||||
3 —— 同上,需要在最早到店时间之前几小时通知; | |||||
4 —— 同上,需要在到店日期的24点之前几小时通知; | |||||
ChangeRuleDate | date | 订单变更的通知时间。 | |||
ChangeRuleHours | int | 当ChangeRule的值为3或4时订单变更的通知时间的小时数。 | |||
Deposit | int | 押金类型。数字定义如下: | |||
0 —— 无; | |||||
1 —— 首晚房费; | |||||
2 —— 全额房费; |
- 在搜索结果数据中还包含了一个Message属性,该属性没有特定作用,可以忽略。
注意:本接口的XML响应体的酒店数据之下的Landmarks节点的内容带有命名空间,解析时请注意!
对于数据格式的理解,请参考下列示例代码中的XML响应演示,其中每个字段都标注了数据类型(日期类型在XML响应中统一使用GMT格式,但被标注为string,请开发者注意)。
担保规则解析代码实例[ ]
Javascript
/********************************************************* 请注意: 本示例中的日期格式化使用的是 Mootools 库。 参考地址:http://mootools.net/docs/more/Types/Date#Date:format **********************************************************/ // 保存担保消息的全局变量 var garanteeableMessage; // 检查规则数组 function checkGaranteeableByArray(rules, bookingDate, checkInDate, arriveTime, roomCount, firstNightFees, fullyFees) { // 担保规则为空时无需担保 if (rules == null || rules.length == 0) return false; // 消息复位 garanteeableMessage = ''; // 取得数组长度 var ruleLength = rules.length; // 遍历每条规则 for (var index = 0; index < ruleLength; index++) { var rule = rules[index]; // 如果遇到符合条件的担保规则就直接返回 if (checkGaranteeable(rule, bookingDate, checkInDate, arriveTime, roomCount, firstNightFees, fullyFees)) return true; } return false; } // 检查单条规则 function checkGaranteeable(rule, bookingDate, checkInDate, arriveTime, roomCount, firstNightFees, fullyFees) { // 辅助函数 if (!this.resetDate) this.resetDate = function (date) { date.setFullYear(2000); date.setMonth(1); date.setDate(1); return date; }; // 参数整理,便于后面的比较 this.arriveTime = this.resetDate(arriveTime); this.ArriveStartTime = this.resetDate(rule.ArriveStartTime); this.ArriveEndTime = this.resetDate(rule.ArriveEndTime); // 如果担保最晚时间是次日,则日期+1,刚才已经复位为1日,这里直接设置为2日即可 if (rule.IsTomorrow) this.ArriveEndTime = this.ArriveEndTime.setDate(2); // 消息复位 garanteeableMessage = ''; // 提取担保时间的判断基准 var refDate; switch (rule.DateReference) { case 1: // 入住日期 refDate = checkInDate; break; case 2: // 在店日期(暂时以入住日期方式处理) refDate = checkInDate; break; case 3: // 预订日期 refDate = bookingDate; break; default: return false; } // 将每周有效日join为已格式化的字符串,对js表示无语…… var weekSets = rule.WeekSet.join(','); if (refDate >= rule.ActivationDate && refDate <= rule.ExpirationDate && weekSets.indexOf(refDate.getDay().toString()) > -1) { var flag = false; garanteeableMessage = '担保条件:在' + rule.ActivationDate.format('%Y-%m-%d') + '至' + rule.ExpirationDate.format('%Y-%m-%d') + '期间入住,'; // 时间担保检查 if (rule.IsArriveTimeVouch) { if (arriveTime > this.ArriveStartTime && arriveTime <= this.ArriveEndTime) { flag = true; garanteeableMessage = garanteeableMessage.concat('于' + rule.ArriveStartTime.format('%H:%M') + '至' + rule.ArriveEndTime.format('%H:%M') + '到店,'); } } else flag = true; // 房量担保检查 if (rule.IsRoomCountVouch) { if (roomCount >= rule.RoomCount) { flag = true; garanteeableMessage = garanteeableMessage.concat('如果预订房量超过' + rule.RoomCount + '间,'); } } if (flag) { garanteeableMessage = garanteeableMessage.concat('需要您提供信用卡担保。'); // 变更规则 if (rule.IsChange) { switch (rule.ChangeRule) { case 2: garanteeableMessage = garanteeableMessage.concat('客人在' + rule.ChangeRuleDate.format('%Y-%m-%d %H:%M') + '之前可以变更取消,之后无法变更取消。'); break; case 3: if (rule.ChangeRuleHours == 24) garanteeableMessage = garanteeableMessage.concat('客人最早到店1天前可以变更取消,之后无法变更取消。'); else garanteeableMessage = garanteeableMessage.concat('客人最早到店' + rule.ChangeRuleHours + '小时前可以变更取消,之后无法变更取消。'); break; case 4: garanteeableMessage = garanteeableMessage.concat('客人在到店当日的' + (24 - rule.ChangeRuleHours) + ':00前可以变更取消,之后无法变更取消。'); break; default: garanteeableMessage = garanteeableMessage.concat('订单提交后不允许变更取消。'); break; } } else garanteeableMessage = garanteeableMessage.concat('订单提交后不允许变更取消。'); // 押金计算 switch (rule.Deposit) { case 1: garanteeableMessage = garanteeableMessage.concat('如未入住,将扣除第一晚房费(' + firstNightFees + '元)作为违约金。'); break; case 2: garanteeableMessage = garanteeableMessage.concat('如未入住,将扣除全额房费(' + fullyFees + '元)作为违约金。'); break; } return true; } } // 如果无需担保,复位消息,避免出现脏数据 garanteeableMessage = ''; return false; } // 测试 // 预订日期 var bookingDate = new Date(2011, 6, 2); // 入住日期 var checkInDate = new Date(2011, 6, 3, 8, 0, 0); // 假设用户晚上8点才能抵达酒店 var arriveTime = new Date(2011, 5, 20, 18, 0, 0); // 房间数量 var roomCount = 1; // 首晚房费 var firstNightFees = 100; // 全额房费 var fullyFees = 1000; // 担保规则 var hotelGaranteeRules = [{ "RuleMode" : 1, "Description" : "担保条件:在11.06.19至11.12.31 入住 在18:00至6:00到店,需要您提供信用卡担保。客人入住日18:00点前可以变更取消, 之后无法变更取消,如未入住,将扣除第一晚房费作为违约金。", "Gage" : 1, "DateReference" : 1, "ActivationDate" : new Date(1308412800000), "ExpirationDate" : new Date(1325260800000), "WeekSet" : [1, 2, 3, 4, 5, 6, 0], "IsArriveTimeVouch" : true, "ArriveStartTime" : new Date(946720800000), "ArriveEndTime" : new Date(946677600000), "IsTomorrow" : true, "IsRoomCountVouch" : false, "RoomCount" : 0, "IsChange" : true, "ChangeRule" : 4, "ChangeRuleDate" : new Date(1219053600000), "ChangeRuleHours" : 6, "Deposit" : 1 }]; // 担保校验 var result = checkGaranteeableByArray(hotelGaranteeRules, bookingDate, checkInDate, arriveTime, roomCount, firstNightFees, fullyFees); // 需要担保时输出担保消息 if (result) console.log(garanteeableMessage); else console.log('无需担保');
示例代码[ ]
以下示例代码是通过HTML表单实现了该接口的部分操作,您在开发过程中应当使用自己的平台语言来模拟这些操作以捕获响应体,然后对响应体做出相应的操作。
请求示例
<!-- 这是该接口的请求示例,该接口的访问类同于如下表单的提交, 请注意:该表单使用控件的方法模拟了GET请求 --> <form id="myForm" method="get" action="http://api.yudingbao.net/v1.0/hotel/search.ashx"> <p> <!--动作标识,注意动作标识是大小写敏感的--> <input id="act" name="act" value="getHotelList" type="text" /> </p> <p> <!--城市编号,0101是北京的编号--> <input id="cityCode" name="cityCode" value="0101" type="text"> <!--入住日期--> <input id="checkInDate" name="checkInDate" value="2011-05-13" type="text"> <!--退房日期,注意价格排期数据内不包含退房当天的价格--> <input id="checkOutDate" name="checkOutDate" value="2011-05-15" type="text"> <!--页码,即第几页--> <input id="pageIndex" name="pageIndex" value="1" type="text"> <!--页面大小,指每页返回项数的最大值--> <input id="pageSize" name="pageSize" value="15" type="text"> <!--排序方式,这里是默认排序--> <input id="sortType" name="sortType" value="0" type="text"> </p> <p> <!--指定响应格式为XML,这里以XML为例--> <input id="format" name="format" value="xml" type="text" /> <!--指定响应体应当是已格式化的,便于阅读代码,在生产环境中应当将该值设置为false--> <input id="indent" name="indent" value="true" type="text" /> <!--产品编号。在我的账户-分销产品的应用列表中可以找到该参数的值。--> <input id="aid" name="aid" value="78663" type="text" /> <!--接口密钥。在我的账户-分销产品的应用列表中可以找到该参数的值。--> <input id="key" name="key" value="0925ed633d24577eb3ffe13f00c55a4f9739f51a77eefb1dba29bb9568acddfd" type="text" /> <!--应用程序授权编号及公钥,这是可选的--> <input id="sid" name="sid" value="" type="text"> <input id="sKey" name="sKey" value="" type="text"> </p> <p> <input id="submit" name="submit" value="提交" type="submit"> </p> </form>
XML响应
<!--XML响应,响应体过大,已删节--> <?xml version="1.0" encoding="utf-8"?> <HttpResponse> <Status type="number">0</Status> <Messages type="array"> </Messages> <ResponseBody type="object"> <Hotels type="array"> <item type="object"> <_id type="string">h010t10101279</_id> <Rooms type="array"> <item type="object"> <TypeId type="string">0001</TypeId> <Name type="string">商务大床房</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">0</TypeNumber> <Area type="number">0</Area> <Floor type="string">1-3</Floor> <BedDescription type="string">大床,免费上网,宽带,无窗,</BedDescription> <Note type="string">房间窗户朝向走廊;大床:150cm*190cm</Note> <RatePlans type="array"> <item type="object"> <_id type="number">108954</_id> <Name type="string">不含早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">128.0</RetailRate> <MemberRate type="number">120.0</MemberRate> <AddBedRate type="number">50.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">128.0</RetailRate> <MemberRate type="number">120.0</MemberRate> <AddBedRate type="number">50.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">240.0</TotalPrice> <LowestPrice type="number">120.0</LowestPrice> <HighestPrice type="number">120.0</HighestPrice> <AveragePrice type="number">120.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> <IsGuaranteeable type="boolean">false</IsGuaranteeable> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">0002</TypeId> <Name type="string">商务标间</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">0</TypeNumber> <Area type="number">0</Area> <Floor type="string">1-3</Floor> <BedDescription type="string">双床,免费上网,宽带,无窗,</BedDescription> <Note type="string">部分房间窗户朝向走廊;双床:120cm*190cm</Note> <RatePlans type="array"> <item type="object"> <_id type="number">108954</_id> <Name type="string">不含早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">138.0</RetailRate> <MemberRate type="number">130.0</MemberRate> <AddBedRate type="number">50.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">138.0</RetailRate> <MemberRate type="number">130.0</MemberRate> <AddBedRate type="number">50.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">260.0</TotalPrice> <LowestPrice type="number">130.0</LowestPrice> <HighestPrice type="number">130.0</HighestPrice> <AveragePrice type="number">130.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> <IsGuaranteeable type="boolean">false</IsGuaranteeable> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">0003</TypeId> <Name type="string">豪华家庭房</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">0</TypeNumber> <Area type="number">0</Area> <Floor type="string">1-3</Floor> <BedDescription type="string">免费上网,宽带,双床-1张大床和1张单人床,</BedDescription> <Note type="string">大床:150cm*190cm;单人床:120cm*190cm</Note> <RatePlans type="array"> <item type="object"> <_id type="number">108954</_id> <Name type="string">不含早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">168.0</RetailRate> <MemberRate type="number">160.0</MemberRate> <AddBedRate type="number">50.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">168.0</RetailRate> <MemberRate type="number">160.0</MemberRate> <AddBedRate type="number">50.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">320.0</TotalPrice> <LowestPrice type="number">160.0</LowestPrice> <HighestPrice type="number">160.0</HighestPrice> <AveragePrice type="number">160.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> <IsGuaranteeable type="boolean">false</IsGuaranteeable> </item> </RatePlans> </item> </Rooms> <Distance type="number">0.0</Distance> <Status type="number">0</Status> <Landmarks type="object"> <a:item xmlns:a="item" item="0577" type="string">北京市供销学校</a:item> </Landmarks> <CCAccepted type="string"> </CCAccepted> <AvailPolicy type="string"> </AvailPolicy> <AirportPickUpService type="string"> </AirportPickUpService> <Thumbnail type="string">http://static.yudingbao.net/images/hotel/a/52/10101279_1_6_0_1.jpg</Thumbnail> <Description type="string">酒店开业时间2008年6月1日,2009年10月1日局部装修,主楼高3层,客房总数65间(套)。</Description> <IntroEditor type="string">北京豪庭快捷商务酒店位于北京市大兴区西红门四村民生路南区东四条,周边环境一般,购物便利。 酒店建筑面积2000平方米,客房98间。房间内设施齐全,配备有卫星电视、空调、电话、宽带接口、热水器,独立卫生间等。 酒店配有停车场、中式餐厅、休闲平台。酒店环境幽雅、温馨舒适、交通便利,现代简约的设计风格,清净无忧的独立空间, 良好的环境和家一样的服务,是朋友聚会、旅游住宿、小型商务办公的理想选择。 酒店开业时间2008年6月1日,2009年10月1日局部装修,主楼高3层,客房总数65间(套)。</IntroEditor> <BusinessZoneId type="string">010135</BusinessZoneId> <DistrictId type="string">0033</DistrictId> <CityId type="string">0101</CityId> <ProvinceId type="string">0100</ProvinceId> <RegionId type="string"> </RegionId> <Country type="string">中国</Country> <Lat type="number">39.781659</Lat> <Lng type="number">116.364419</Lng> <Rating type="number">0</Rating> <Typology type="number">72</Typology> <Category type="number">0</Category> <Address type="string">北京市大兴区西红门四村民生路南区东四条四号</Address> <Name type="string">北京豪庭快捷商务酒店</Name> <TotalPrice type="number">240.0</TotalPrice> <LowestPrice type="number">120.0</LowestPrice> <HighestPrice type="number">120.0</HighestPrice> <AveragePrice type="number">120.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> <item type="object"> <_id type="string">h010t10101213</_id> <Rooms type="array"> <item type="object"> <TypeId type="string">0001</TypeId> <Name type="string">经济间</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">30</TypeNumber> <Area type="number">0</Area> <Floor type="string">2-7</Floor> <BedDescription type="string">大床,双床,免费上网,宽带,无窗,</BedDescription> <Note type="string">大床:150cm*200cm,双床:100cm*200cm;无窗户;部分房间不能上网;有无烟房</Note> <RatePlans type="array"> <item type="object"> <_id type="number">103238</_id> <Name type="string">含双早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">138.0</RetailRate> <MemberRate type="number">138.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">138.0</RetailRate> <MemberRate type="number">138.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">276.0</TotalPrice> <LowestPrice type="number">138.0</LowestPrice> <HighestPrice type="number">138.0</HighestPrice> <AveragePrice type="number">138.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">0002</TypeId> <Name type="string">标准大床房</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">20</TypeNumber> <Area type="number">0</Area> <Floor type="string">2-7</Floor> <BedDescription type="string">免费上网,宽带,大床(150cm*200cm),</BedDescription> <Note type="string">有无烟房</Note> <RatePlans type="array"> <item type="object"> <_id type="number">103238</_id> <Name type="string">含双早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">178.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">178.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">356.0</TotalPrice> <LowestPrice type="number">178.0</LowestPrice> <HighestPrice type="number">178.0</HighestPrice> <AveragePrice type="number">178.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">0003</TypeId> <Name type="string">标准双床房</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">50</TypeNumber> <Area type="number">0</Area> <Floor type="string">2-7</Floor> <BedDescription type="string">免费上网,宽带,双床(120cm*200cm),</BedDescription> <Note type="string">有无烟房</Note> <RatePlans type="array"> <item type="object"> <_id type="number">103238</_id> <Name type="string">含双早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">178.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">178.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">356.0</TotalPrice> <LowestPrice type="number">178.0</LowestPrice> <HighestPrice type="number">178.0</HighestPrice> <AveragePrice type="number">178.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">0004</TypeId> <Name type="string">套间</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">10</TypeNumber> <Area type="number">0</Area> <Floor type="string">2-7</Floor> <BedDescription type="string">免费上网,宽带,大床(200cm*200cm),</BedDescription> <Note type="string"> </Note> <RatePlans type="array"> <item type="object"> <_id type="number">103238</_id> <Name type="string">含双早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">288.0</RetailRate> <MemberRate type="number">228.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">288.0</RetailRate> <MemberRate type="number">228.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">456.0</TotalPrice> <LowestPrice type="number">228.0</LowestPrice> <HighestPrice type="number">228.0</HighestPrice> <AveragePrice type="number">228.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> </Rooms> <Distance type="number">0.0</Distance> <Status type="number">1</Status> <Landmarks type="object"> <a:item xmlns:a="item" item="0281" type="string">西四环</a:item> </Landmarks> <CCAccepted type="string">Visacard,牡丹卡,金穗卡,长城卡,龙卡,太平洋卡,东方卡,万事达卡,运通卡,大莱卡,JCBcard</CCAccepted> <AvailPolicy type="string">1、早上6:00前入住加收一天房费 2、不能代订,所有房间都要留实住客人姓名名字</AvailPolicy> <AirportPickUpService type="string"> </AirportPickUpService> <Thumbnail type="string">http://static.yudingbao.net/images/hotel/a/45/10101213_1_5_0_1.jpg</Thumbnail> <Description type="string">酒店开业时间2007年6月10日,楼高7层,客房总数130间(套)。</Description> <IntroEditor type="string">北京嘉洁酒店是大红杏餐饮有限公司下属的一家酒店。 它借鉴欧美国家最新时尚概念,小巧、精致、便捷、舒适、安全、价廉、IT功能性强。 酒店为满足不同客户的需求,共设有标准房A、标准房B、套房、豪华套房共四种规格。 房内空调、卫浴、电视、电话、宽带上网等设施齐全,是差旅人士理想的停居之所。 酒店开业时间2007年6月10日,楼高7层,客房总数130间(套)。</IntroEditor> <BusinessZoneId type="string">010113</BusinessZoneId> <DistrictId type="string">0011</DistrictId> <CityId type="string">0101</CityId> <ProvinceId type="string">0100</ProvinceId> <RegionId type="string"> </RegionId> <Country type="string">中国</Country> <Lat type="number">39.924789</Lat> <Lng type="number">116.270226</Lng> <Rating type="number">0</Rating> <Typology type="number">72</Typology> <Category type="number">0</Category> <Address type="string">北京市海淀区永定路甲四号(西四环定慧桥西北角)</Address> <Name type="string">北京嘉洁酒店</Name> <TotalPrice type="number">276.0</TotalPrice> <LowestPrice type="number">138.0</LowestPrice> <HighestPrice type="number">138.0</HighestPrice> <AveragePrice type="number">138.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> <item type="object"> <_id type="string">h010t10101047</_id> <Rooms type="array"> <item type="object"> <TypeId type="string">1017</TypeId> <Name type="string">标准间</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">45</TypeNumber> <Area type="number">20</Area> <Floor type="string">1</Floor> <BedDescription type="string">双床,免费上网,宽带,普通楼层,其他,</BedDescription> <Note type="string">1.2*2.0</Note> <RatePlans type="array"> <item type="object"> <_id type="number">16677</_id> <Name type="string">不含早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">150.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">150.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">300.0</TotalPrice> <LowestPrice type="number">150.0</LowestPrice> <HighestPrice type="number">150.0</HighestPrice> <AveragePrice type="number">150.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">1018</TypeId> <Name type="string">大床房</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">50</TypeNumber> <Area type="number">15</Area> <Floor type="string">2</Floor> <BedDescription type="string">大床,免费上网,宽带,普通楼层,其他,</BedDescription> <Note type="string">1.8*2.0</Note> <RatePlans type="array"> <item type="object"> <_id type="number">16677</_id> <Name type="string">不含早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">150.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">188.0</RetailRate> <MemberRate type="number">150.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">300.0</TotalPrice> <LowestPrice type="number">150.0</LowestPrice> <HighestPrice type="number">150.0</HighestPrice> <AveragePrice type="number">150.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> <item type="object"> <TypeId type="string">1019</TypeId> <Name type="string">三人间</Name> <Broadband type="number">1</Broadband> <TypeNumber type="number">10</TypeNumber> <Area type="number">30</Area> <Floor type="string">2</Floor> <BedDescription type="string">免费上网,宽带,普通楼层,其他,3张单人床,</BedDescription> <Note type="string">1.2*2.0</Note> <RatePlans type="array"> <item type="object"> <_id type="number">16677</_id> <Name type="string">不含早</Name> <Rates type="array"> <item type="object"> <Date type="string">Tue, 13 May 0042 00:00:00 GMT</Date> <RetailRate type="number">288.0</RetailRate> <MemberRate type="number">200.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> <item type="object"> <Date type="string">Wed, 14 May 0042 00:00:00 GMT</Date> <RetailRate type="number">288.0</RetailRate> <MemberRate type="number">200.0</MemberRate> <AddBedRate type="number">0.0</AddBedRate> <CanBook type="boolean">true</CanBook> </item> </Rates> <TotalPrice type="number">400.0</TotalPrice> <LowestPrice type="number">200.0</LowestPrice> <HighestPrice type="number">200.0</HighestPrice> <AveragePrice type="number">200.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </RatePlans> </item> </Rooms> <Distance type="number">0.0</Distance> <Status type="number">0</Status> <Landmarks type="object"> </Landmarks> <CCAccepted type="string">牡丹卡,金穗卡,长城卡,龙卡,太平洋卡</CCAccepted> <AvailPolicy type="string"> </AvailPolicy> <AirportPickUpService type="string"> </AirportPickUpService> <Thumbnail type="string">http://static.yudingbao.net/images/hotel/a/28/10101047_1_5_0_1.jpg</Thumbnail> <Description type="string">酒店开业时间2004年5月18日,新近装修时间2008年2月1日,楼高2 层,共有客房总数110间(套),标间面积20平米。</Description> <IntroEditor type="string">忘归宾馆有限公司由河北兴奥集团投资兴建,是一家多元化的企业以建筑和旅游服务为主。 目前在京共有四家连锁店,分别坐落于东四环大柳树、小洋坊横街子、南四环十八里店及宣武区陶然亭。 服务设施完备,服务质量素质高。客人进入宾馆有保安人员为您提包、行李等服务,前台人员会把您的贵重物品保存好,前台设有保险箱。 服务人员直接引领您入住的房间,电子卡钥匙门锁。文明服务。</IntroEditor> <BusinessZoneId type="string">010116</BusinessZoneId> <DistrictId type="string">0003</DistrictId> <CityId type="string">0101</CityId> <ProvinceId type="string">0100</ProvinceId> <RegionId type="string"> </RegionId> <Country type="string">中国</Country> <Lat type="number">39.828411</Lat> <Lng type="number">116.509444</Lng> <Rating type="number">0</Rating> <Typology type="number">72</Typology> <Category type="number">2</Category> <Address type="string">北京市朝阳区十八里店横街子238号</Address> <Name type="string">北京忘归宾馆(十八里店)</Name> <TotalPrice type="number">300.0</TotalPrice> <LowestPrice type="number">150.0</LowestPrice> <HighestPrice type="number">150.0</HighestPrice> <AveragePrice type="number">150.0</AveragePrice> <NonBookingPercentage type="number">0.0</NonBookingPercentage> </item> </Hotels> <TotalItemCount type="number">187</TotalItemCount> <TotalPageCount type="number">13</TotalPageCount> <PageSize type="number">15</PageSize> <PageIndex type="number">1</PageIndex> <SortType type="number">0</SortType> <Message type="null"> </Message> </ResponseBody> </HttpResponse>
JSON响应
// Json响应,响应体过大,已删节 { "Status" : 0, "Messages" : [], "ResponseBody" : { "Hotels" : [{ "_id" : "h010t10101279", "Rooms" : [{ "TypeId" : "0001", "Name" : "商务大床房", "Broadband" : 1, "TypeNumber" : 0, "Area" : 0, "Floor" : "1-3", "BedDescription" : "大床,免费上网,宽带,无窗,", "Note" : "房间窗户朝向走廊;大床:150cm*190cm", "RatePlans" : [{ "_id" : 108954, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 128.0, "MemberRate" : 120.0, "AddBedRate" : 50.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 128.0, "MemberRate" : 120.0, "AddBedRate" : 50.0, "CanBook" : true }], "TotalPrice" : 240.0, "LowestPrice" : 120.0, "HighestPrice" : 120.0, "AveragePrice" : 120.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0002", "Name" : "商务标间", "Broadband" : 1, "TypeNumber" : 0, "Area" : 0, "Floor" : "1-3", "BedDescription" : "双床,免费上网,宽带,无窗,", "Note" : "部分房间窗户朝向走廊;双床:120cm*190cm", "RatePlans" : [{ "_id" : 108954, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 138.0, "MemberRate" : 130.0, "AddBedRate" : 50.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 138.0, "MemberRate" : 130.0, "AddBedRate" : 50.0, "CanBook" : true }], "TotalPrice" : 260.0, "LowestPrice" : 130.0, "HighestPrice" : 130.0, "AveragePrice" : 130.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0003", "Name" : "豪华家庭房", "Broadband" : 1, "TypeNumber" : 0, "Area" : 0, "Floor" : "1-3", "BedDescription" : "免费上网,宽带,双床-1张大床和1张单人床,", "Note" : "大床:150cm*190cm;单人床:120cm*190cm", "RatePlans" : [{ "_id" : 108954, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 168.0, "MemberRate" : 160.0, "AddBedRate" : 50.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 168.0, "MemberRate" : 160.0, "AddBedRate" : 50.0, "CanBook" : true }], "TotalPrice" : 320.0, "LowestPrice" : 160.0, "HighestPrice" : 160.0, "AveragePrice" : 160.0, "NonBookingPercentage" : 0.0 }] }], "Distance" : 0.0, "Status" : 0, "Landmarks" : { "0577" : "北京市供销学校" }, "CCAccepted" : "", "AvailPolicy" : "", "AirportPickUpService" : "", "Thumbnail" : "http://static.yudingbao.net/images/hotel/a/52/10101279_1_6_0_1.jpg", "Description" : "酒店开业时间2008年6月1日,2009年10月1日局部装修,主楼高3层,客房总数65间(套)。", "IntroEditor" : "北京豪庭快捷商务酒店位于北京市大兴区西红门四村民生路南区东四条,周边环境一般,购物便利。\n 酒店建筑面积2000平方米,客房98间。房间内设施齐全,配备有卫星电视、空调、电话、宽带接口、热水器,独立卫生间等。 酒店配有停车场、中式餐厅、休闲平台。酒店环境幽雅、温馨舒适、交通便利,现代简约的设计风格, 清净无忧的独立空间,良好的环境和家一样的服务,是朋友聚会、旅游住宿、小型商务办公的理想选择。\n 酒店开业时间2008年6月1日,2009年10月1日局部装修,主楼高3层,客房总数65间(套)。", "BusinessZoneId" : "010135", "DistrictId" : "0033", "CityId" : "0101", "ProvinceId" : "0100", "RegionId" : "", "Country" : "中国", "Lat" : 39.781659, "Lng" : 116.364419, "Rating" : 0, "Typology" : 72, "Category" : 0, "Address" : "北京市大兴区西红门四村民生路南区东四条四号", "Name" : "北京豪庭快捷商务酒店", "TotalPrice" : 240.0, "LowestPrice" : 120.0, "HighestPrice" : 120.0, "AveragePrice" : 120.0, "NonBookingPercentage" : 0.0 }, { "_id" : "h010t10101213", "Rooms" : [{ "TypeId" : "0001", "Name" : "经济间", "Broadband" : 1, "TypeNumber" : 30, "Area" : 0, "Floor" : "2-7", "BedDescription" : "大床,双床,免费上网,宽带,无窗,", "Note" : "大床:150cm*200cm,双床:100cm*200cm;无窗户;部分房间不能上网;有无烟房", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 138.0, "MemberRate" : 138.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 138.0, "MemberRate" : 138.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 276.0, "LowestPrice" : 138.0, "HighestPrice" : 138.0, "AveragePrice" : 138.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0002", "Name" : "标准大床房", "Broadband" : 1, "TypeNumber" : 20, "Area" : 0, "Floor" : "2-7", "BedDescription" : "免费上网,宽带,大床(150cm*200cm),", "Note" : "有无烟房", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 356.0, "LowestPrice" : 178.0, "HighestPrice" : 178.0, "AveragePrice" : 178.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0003", "Name" : "标准双床房", "Broadband" : 1, "TypeNumber" : 50, "Area" : 0, "Floor" : "2-7", "BedDescription" : "免费上网,宽带,双床(120cm*200cm),", "Note" : "有无烟房", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 356.0, "LowestPrice" : 178.0, "HighestPrice" : 178.0, "AveragePrice" : 178.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0004", "Name" : "套间", "Broadband" : 1, "TypeNumber" : 10, "Area" : 0, "Floor" : "2-7", "BedDescription" : "免费上网,宽带,大床(200cm*200cm),", "Note" : "", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 288.0, "MemberRate" : 228.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 288.0, "MemberRate" : 228.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 456.0, "LowestPrice" : 228.0, "HighestPrice" : 228.0, "AveragePrice" : 228.0, "NonBookingPercentage" : 0.0 }] }], "Distance" : 0.0, "Status" : 1, "Landmarks" : { "0281" : "西四环" }, "CCAccepted" : "Visacard,牡丹卡,金穗卡,长城卡,龙卡,太平洋卡,东方卡,万事达卡,运通卡,大莱卡,JCBcard", "AvailPolicy" : "1、早上6:00前入住加收一天房费\n2、不能代订,所有房间都要留实住客人姓名名字", "AirportPickUpService" : "", "Thumbnail" : "http://static.yudingbao.net/images/hotel/a/45/10101213_1_5_0_1.jpg", "Description" : "酒店开业时间2007年6月10日,楼高7层,客房总数130间(套)。", "IntroEditor" : "北京嘉洁酒店是大红杏餐饮有限公司下属的一家酒店。 它借鉴欧美国家最新时尚概念,小巧、精致、便捷、舒适、安全、价廉、IT功能性强。 酒店为满足不同客户的需求,共设有标准房A、标准房B、套房、豪华套房共四种规格。 房内空调、卫浴、电视、电话、宽带上网等设施齐全,是差旅人士理想的停居之所。\n 酒店开业时间2007年6月10日,楼高7层,客房总数130间(套)。", "BusinessZoneId" : "010113", "DistrictId" : "0011", "CityId" : "0101", "ProvinceId" : "0100", "RegionId" : "", "Country" : "中国", "Lat" : 39.924789, "Lng" : 116.270226, "Rating" : 0, "Typology" : 72, "Category" : 0, "Address" : "北京市海淀区永定路甲四号(西四环定慧桥西北角)", "Name" : "北京嘉洁酒店", "TotalPrice" : 276.0, "LowestPrice" : 138.0, "HighestPrice" : 138.0, "AveragePrice" : 138.0, "NonBookingPercentage" : 0.0 }, { "_id" : "h010t10101047", "Rooms" : [{ "TypeId" : "1017", "Name" : "标准间", "Broadband" : 1, "TypeNumber" : 45, "Area" : 20, "Floor" : "1", "BedDescription" : "双床,免费上网,宽带,普通楼层,其他,", "Note" : "1.2*2.0", "RatePlans" : [{ "_id" : 16677, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 300.0, "LowestPrice" : 150.0, "HighestPrice" : 150.0, "AveragePrice" : 150.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "1018", "Name" : "大床房", "Broadband" : 1, "TypeNumber" : 50, "Area" : 15, "Floor" : "2", "BedDescription" : "大床,免费上网,宽带,普通楼层,其他,", "Note" : "1.8*2.0", "RatePlans" : [{ "_id" : 16677, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 300.0, "LowestPrice" : 150.0, "HighestPrice" : 150.0, "AveragePrice" : 150.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "1019", "Name" : "三人间", "Broadband" : 1, "TypeNumber" : 10, "Area" : 30, "Floor" : "2", "BedDescription" : "免费上网,宽带,普通楼层,其他,3张单人床,", "Note" : "1.2*2.0", "RatePlans" : [{ "_id" : 16677, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 288.0, "MemberRate" : 200.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 288.0, "MemberRate" : 200.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 400.0, "LowestPrice" : 200.0, "HighestPrice" : 200.0, "AveragePrice" : 200.0, "NonBookingPercentage" : 0.0 }] }], "Distance" : 0.0, "Status" : 0, "Landmarks" : { }, "CCAccepted" : "牡丹卡,金穗卡,长城卡,龙卡,太平洋卡", "AvailPolicy" : "", "AirportPickUpService" : "", "Thumbnail" : "http://static.yudingbao.net/images/hotel/a/28/10101047_1_5_0_1.jpg", "Description" : "酒店开业时间2004年5月18日,新近装修时间2008年2月1日,楼高2 层,共有客房总数110间(套),标间面积20平米。", "IntroEditor" : "忘归宾馆有限公司由河北兴奥集团投资兴建,是一家多元化的企业以建筑和旅游服务为主。 目前在京共有四家连锁店,分别坐落于东四环大柳树、小洋坊横街子、南四环十八里店及宣武区陶然亭。\n 服务设施完备,服务质量素质高。客人进入宾馆有保安人员为您提包、行李等服务,前台人员会把您的贵重物品保存好, 前台设有保险箱。服务人员直接引领您入住的房间,电子卡钥匙门锁。文明服务。", "BusinessZoneId" : "010116", "DistrictId" : "0003", "CityId" : "0101", "ProvinceId" : "0100", "RegionId" : "", "Country" : "中国", "Lat" : 39.828411, "Lng" : 116.509444, "Rating" : 0, "Typology" : 72, "Category" : 2, "Address" : "北京市朝阳区十八里店横街子238号", "Name" : "北京忘归宾馆(十八里店)", "TotalPrice" : 300.0, "LowestPrice" : 150.0, "HighestPrice" : 150.0, "AveragePrice" : 150.0, "NonBookingPercentage" : 0.0 }], "TotalItemCount" : 187, "TotalPageCount" : 13, "PageSize" : 15, "PageIndex" : 1, "SortType" : 0, "Message" : null } }
JSONP响应
// JsonP响应,响应体过大,已删节 jsoncallback({ "Status" : 0, "Messages" : [], "ResponseBody" : { "Hotels" : [{ "_id" : "h010t10101279", "Rooms" : [{ "TypeId" : "0001", "Name" : "商务大床房", "Broadband" : 1, "TypeNumber" : 0, "Area" : 0, "Floor" : "1-3", "BedDescription" : "大床,免费上网,宽带,无窗,", "Note" : "房间窗户朝向走廊;大床:150cm*190cm", "RatePlans" : [{ "_id" : 108954, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 128.0, "MemberRate" : 120.0, "AddBedRate" : 50.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 128.0, "MemberRate" : 120.0, "AddBedRate" : 50.0, "CanBook" : true }], "TotalPrice" : 240.0, "LowestPrice" : 120.0, "HighestPrice" : 120.0, "AveragePrice" : 120.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0002", "Name" : "商务标间", "Broadband" : 1, "TypeNumber" : 0, "Area" : 0, "Floor" : "1-3", "BedDescription" : "双床,免费上网,宽带,无窗,", "Note" : "部分房间窗户朝向走廊;双床:120cm*190cm", "RatePlans" : [{ "_id" : 108954, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 138.0, "MemberRate" : 130.0, "AddBedRate" : 50.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 138.0, "MemberRate" : 130.0, "AddBedRate" : 50.0, "CanBook" : true }], "TotalPrice" : 260.0, "LowestPrice" : 130.0, "HighestPrice" : 130.0, "AveragePrice" : 130.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0003", "Name" : "豪华家庭房", "Broadband" : 1, "TypeNumber" : 0, "Area" : 0, "Floor" : "1-3", "BedDescription" : "免费上网,宽带,双床-1张大床和1张单人床,", "Note" : "大床:150cm*190cm;单人床:120cm*190cm", "RatePlans" : [{ "_id" : 108954, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 168.0, "MemberRate" : 160.0, "AddBedRate" : 50.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 168.0, "MemberRate" : 160.0, "AddBedRate" : 50.0, "CanBook" : true }], "TotalPrice" : 320.0, "LowestPrice" : 160.0, "HighestPrice" : 160.0, "AveragePrice" : 160.0, "NonBookingPercentage" : 0.0 }] }], "Distance" : 0.0, "Status" : 0, "Landmarks" : { "0577" : "北京市供销学校" }, "CCAccepted" : "", "AvailPolicy" : "", "AirportPickUpService" : "", "Thumbnail" : "http://static.yudingbao.net/images/hotel/a/52/10101279_1_6_0_1.jpg", "Description" : "酒店开业时间2008年6月1日,2009年10月1日局部装修,主楼高3层,客房总数65间(套)。", "IntroEditor" : "北京豪庭快捷商务酒店位于北京市大兴区西红门四村民生路南区东四条,周边环境一般,购物便利。\n 酒店建筑面积2000平方米,客房98间。房间内设施齐全,配备有卫星电视、空调、电话、宽带接口、热水器, 独立卫生间等。酒店配有停车场、中式餐厅、休闲平台。酒店环境幽雅、温馨舒适、交通便利, 现代简约的设计风格,清净无忧的独立空间,良好的环境和家一样的服务,是朋友聚会、旅游住宿、小型商务办公的理想选择。\n 酒店开业时间2008年6月1日,2009年10月1日局部装修,主楼高3层,客房总数65间(套)。", "BusinessZoneId" : "010135", "DistrictId" : "0033", "CityId" : "0101", "ProvinceId" : "0100", "RegionId" : "", "Country" : "中国", "Lat" : 39.781659, "Lng" : 116.364419, "Rating" : 0, "Typology" : 72, "Category" : 0, "Address" : "北京市大兴区西红门四村民生路南区东四条四号", "Name" : "北京豪庭快捷商务酒店", "TotalPrice" : 240.0, "LowestPrice" : 120.0, "HighestPrice" : 120.0, "AveragePrice" : 120.0, "NonBookingPercentage" : 0.0 }, { "_id" : "h010t10101213", "Rooms" : [{ "TypeId" : "0001", "Name" : "经济间", "Broadband" : 1, "TypeNumber" : 30, "Area" : 0, "Floor" : "2-7", "BedDescription" : "大床,双床,免费上网,宽带,无窗,", "Note" : "大床:150cm*200cm,双床:100cm*200cm;无窗户;部分房间不能上网;有无烟房", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 138.0, "MemberRate" : 138.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 138.0, "MemberRate" : 138.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 276.0, "LowestPrice" : 138.0, "HighestPrice" : 138.0, "AveragePrice" : 138.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0002", "Name" : "标准大床房", "Broadband" : 1, "TypeNumber" : 20, "Area" : 0, "Floor" : "2-7", "BedDescription" : "免费上网,宽带,大床(150cm*200cm),", "Note" : "有无烟房", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 356.0, "LowestPrice" : 178.0, "HighestPrice" : 178.0, "AveragePrice" : 178.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0003", "Name" : "标准双床房", "Broadband" : 1, "TypeNumber" : 50, "Area" : 0, "Floor" : "2-7", "BedDescription" : "免费上网,宽带,双床(120cm*200cm),", "Note" : "有无烟房", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 178.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 356.0, "LowestPrice" : 178.0, "HighestPrice" : 178.0, "AveragePrice" : 178.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "0004", "Name" : "套间", "Broadband" : 1, "TypeNumber" : 10, "Area" : 0, "Floor" : "2-7", "BedDescription" : "免费上网,宽带,大床(200cm*200cm),", "Note" : "", "RatePlans" : [{ "_id" : 103238, "Name" : "含双早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 288.0, "MemberRate" : 228.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 288.0, "MemberRate" : 228.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 456.0, "LowestPrice" : 228.0, "HighestPrice" : 228.0, "AveragePrice" : 228.0, "NonBookingPercentage" : 0.0 }] }], "Distance" : 0.0, "Status" : 1, "Landmarks" : { "0281" : "西四环" }, "CCAccepted" : "Visacard,牡丹卡,金穗卡,长城卡,龙卡,太平洋卡,东方卡,万事达卡,运通卡,大莱卡,JCBcard", "AvailPolicy" : "1、早上6:00前入住加收一天房费\n2、不能代订,所有房间都要留实住客人姓名名字", "AirportPickUpService" : "", "Thumbnail" : "http://static.yudingbao.net/images/hotel/a/45/10101213_1_5_0_1.jpg", "Description" : "酒店开业时间2007年6月10日,楼高7层,客房总数130间(套)。", "IntroEditor" : "北京嘉洁酒店是大红杏餐饮有限公司下属的一家酒店。 它借鉴欧美国家最新时尚概念,小巧、精致、便捷、舒适、安全、价廉、IT功能性强。 酒店为满足不同客户的需求,共设有标准房A、标准房B、套房、豪华套房共四种规格。 房内空调、卫浴、电视、电话、宽带上网等设施齐全,是差旅人士理想的停居之所。\n 酒店开业时间2007年6月10日,楼高7层,客房总数130间(套)。", "BusinessZoneId" : "010113", "DistrictId" : "0011", "CityId" : "0101", "ProvinceId" : "0100", "RegionId" : "", "Country" : "中国", "Lat" : 39.924789, "Lng" : 116.270226, "Rating" : 0, "Typology" : 72, "Category" : 0, "Address" : "北京市海淀区永定路甲四号(西四环定慧桥西北角)", "Name" : "北京嘉洁酒店", "TotalPrice" : 276.0, "LowestPrice" : 138.0, "HighestPrice" : 138.0, "AveragePrice" : 138.0, "NonBookingPercentage" : 0.0 }, { "_id" : "h010t10101047", "Rooms" : [{ "TypeId" : "1017", "Name" : "标准间", "Broadband" : 1, "TypeNumber" : 45, "Area" : 20, "Floor" : "1", "BedDescription" : "双床,免费上网,宽带,普通楼层,其他,", "Note" : "1.2*2.0", "RatePlans" : [{ "_id" : 16677, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 300.0, "LowestPrice" : 150.0, "HighestPrice" : 150.0, "AveragePrice" : 150.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "1018", "Name" : "大床房", "Broadband" : 1, "TypeNumber" : 50, "Area" : 15, "Floor" : "2", "BedDescription" : "大床,免费上网,宽带,普通楼层,其他,", "Note" : "1.8*2.0", "RatePlans" : [{ "_id" : 16677, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 188.0, "MemberRate" : 150.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 300.0, "LowestPrice" : 150.0, "HighestPrice" : 150.0, "AveragePrice" : 150.0, "NonBookingPercentage" : 0.0 }] }, { "TypeId" : "1019", "Name" : "三人间", "Broadband" : 1, "TypeNumber" : 10, "Area" : 30, "Floor" : "2", "BedDescription" : "免费上网,宽带,普通楼层,其他,3张单人床,", "Note" : "1.2*2.0", "RatePlans" : [{ "_id" : 16677, "Name" : "不含早", "Rates" : [{ "Date" : Date(1305244800000), "RetailRate" : 288.0, "MemberRate" : 200.0, "AddBedRate" : 0.0, "CanBook" : true }, { "Date" : Date(1305331200000), "RetailRate" : 288.0, "MemberRate" : 200.0, "AddBedRate" : 0.0, "CanBook" : true }], "TotalPrice" : 400.0, "LowestPrice" : 200.0, "HighestPrice" : 200.0, "AveragePrice" : 200.0, "NonBookingPercentage" : 0.0 }] }], "Distance" : 0.0, "Status" : 0, "Landmarks" : { }, "CCAccepted" : "牡丹卡,金穗卡,长城卡,龙卡,太平洋卡", "AvailPolicy" : "", "AirportPickUpService" : "", "Thumbnail" : "http://static.yudingbao.net/images/hotel/a/28/10101047_1_5_0_1.jpg", "Description" : "酒店开业时间2004年5月18日,新近装修时间2008年2月1日,楼高2 层,共有客房总数110间(套),标间面积20平米。", "IntroEditor" : "忘归宾馆有限公司由河北兴奥集团投资兴建,是一家多元化的企业以建筑和旅游服务为主。 目前在京共有四家连锁店,分别坐落于东四环大柳树、小洋坊横街子、南四环十八里店及宣武区陶然亭。\n 服务设施完备,服务质量素质高。客人进入宾馆有保安人员为您提包、行李等服务,前台人员会把您的贵重物品保存好,前台设有保险箱。 服务人员直接引领您入住的房间,电子卡钥匙门锁。文明服务。", "BusinessZoneId" : "010116", "DistrictId" : "0003", "CityId" : "0101", "ProvinceId" : "0100", "RegionId" : "", "Country" : "中国", "Lat" : 39.828411, "Lng" : 116.509444, "Rating" : 0, "Typology" : 72, "Category" : 2, "Address" : "北京市朝阳区十八里店横街子238号", "Name" : "北京忘归宾馆(十八里店)", "TotalPrice" : 300.0, "LowestPrice" : 150.0, "HighestPrice" : 150.0, "AveragePrice" : 150.0, "NonBookingPercentage" : 0.0 }], "TotalItemCount" : 187, "TotalPageCount" : 13, "PageSize" : 15, "PageIndex" : 1, "SortType" : 0, "Message" : null } });