Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要帮助解析以下网址:
如果格式是 JSON,我知道该怎么做,但它的格式是 JSONP。
http://sg.media-imdb.com/suggests/h/hello.json
先感谢您!
JSONP 只是封装在函数调用中的 JSON callback(JSON_GOES_HERE):. 因此,只需找到最外层的括号,然后继续将其中的任何内容解析为 JSON。
callback(JSON_GOES_HERE)