/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
/**parser for response
* @author Lemon
* @see #getObject
* @see #getList
* @use JSONResponse response = new JSONResponse(json);
*
User user = response.getObject(User.class);//not a must
*
List commentList = response.getList("Comment[]", Comment.class);//not a must
*/
//ç¶æä¿¡æ¯ï¼éGET请æ±è·å¾çä¿¡æ¯ 0;
}
//ç¶æä¿¡æ¯ï¼éGET请æ±è·å¾çä¿¡æ¯>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
/**æ ¼å¼åkeyåç§°
* @param object
* @return
*/
function formatObject(object) {
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format object = \n" + JSON.toJSONString(object));
if (object == null || object == '') {
log(TAG, "format object == null || object == '' >> return object;");
return object;
}
let formattedObject = {};
let value;
for (let key in object) {
value = object[key];
if (value instanceof Array) { // JSONArrayï¼é忥formatå
é¨é¡¹
formattedObject[replaceArray(key)] = formatArray(value);
}
else if (value instanceof Object) { // JSONObjectï¼å¾ä¸ä¸çº§æå
formattedObject[getSimpleName(key)] = formatObject(value);
}
else { // å
¶å®Objectï¼ç´æ¥å¡«å
formattedObject[getSimpleName(key)] = value;
}
}
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format return formattedObject = " + JSON.toJSONString(formattedObject));
return formattedObject;
}
/**æ ¼å¼åkeyåç§°
* @param array
* @return
*/
function formatArray(array) {
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format array = \n" + JSON.toJSONString(array));
if (array == null || array == '') {
log(TAG, "format array == null || array == '' >> return array;");
return array;
}
let formattedArray = [];
let value;
for (let i = 0; i getNoBlankString(key)
* @return empty ? "list" : key + "List" ä¸é¦åæ¯å°å
*/
function getArrayKey(key) {
return addSuffix(key, "list");
}
/**è·åç®ååç§°
* @param fullName name æ name:alias
* @return name => name; name:alias => alias
*/
function getSimpleName(fullName) {
//key:alias -> alias; key:alias[] -> alias[]
let index = fullName == null ? -1 : fullName.indexOf(":");
if (index >= 0) {
fullName = fullName.substring(index + 1);
}
return fullName;
}