我无法从JSONObject获取属性,即使我可以在eclipse检查器中看到它
http://postimg.org/image/a067xzlrh/
JSONObject table= new JSONObject(e.get(i));
JSONObject td = ((JSONObject) test.get("td"));
JSONObject first = ((JSONObject) td.get("0"));
JSONValue classList = first.get("classList");
它适用于前三个调用,但最后一行(first.get(“classList”))始终返回null 即使它在检查员中有价值,如上图所示