This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Version":"20180519071009358","stores":[{"data":[{"data":[{"serviceByRecover":"Y","hours":"\u4e00~\u4e94|11:00-20:00","locationName":"\u5317\u5340","storeTEL":"0800-050-868","address":"\u4fe1\u4e00\u8def94\u865f","typeShortName":"\u7dad\u4fee\u4e2d\u5fc3","typeOrder":3,"typeName":"\u5ba2\u670d\u4e2d\u5fc3","logisticsArea":"","county":"\u57fa\u9686\u5e02","serviceByRepair":"Y","serviceByTelcom":"N","lon":121.750779,"storeID":"314005","locationID":"1","hours_holiday":"","IsOffshoreIslands":"N","district":"\u4fe1\u7fa9\u5340","serviceByAgent":"Y","storeName":"\u57fa\u9686\u4fe1\u4e00\u7dad\u4fee\u4e2d\u5fc3","typeID":"3","serviceBySale":"N","lat":25.128744},{"serviceByRecover":"Y","hours":"\u4e00~\u4e9411:00-21:00","locationName":"\u5317\u5340","storeTEL":"02-24683311","address":"\u6df1\u6eaa\u8def94\u865f","typeShortName":"\u7279\u7d04","typeOrder":1,"typeName":"\u7279\u7d04\u4e2d\u5fc3","logisticsArea":"1","county":"\u57fa\u9686\u5e02","serviceByRepair":"N","serviceByTelcom":"Y","lon":121.782527,"storeID":"97 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Object to QueryString | |
| * @param {object} obj json object | |
| * @returns {string} query string | |
| */ | |
| const jsonToQueryString = (obj) => { | |
| let strList = []; | |
| Object.keys(obj).forEach((key) => { | |
| // array | |
| if(Array.isArray(obj[key])) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { "zip": "100", "name": "臺北市中正區" }, | |
| { "zip": "103", "name": "臺北市大同區" }, | |
| { "zip": "104", "name": "臺北市中山區" }, | |
| { "zip": "105", "name": "臺北市松山區" }, | |
| { "zip": "106", "name": "臺北市大安區" }, | |
| { "zip": "108", "name": "臺北市萬華區" }, | |
| { "zip": "110", "name": "臺北市信義區" }, | |
| { "zip": "111", "name": "臺北市士林區" }, | |
| { "zip": "112", "name": "臺北市北投區" }, |
OlderNewer