有人可以向我解释原因吗
$http.jsonp("http://api.giphy.com/v1/gifs/search?q=funny+cat&api_key=dc6zaTOxFJmzC&callback=JSON_CALLBACK").then(handleResponse,handleError);
触发 handleError 回调( Chrome 中的Uncaught SyntaxError: Unexpected token :
和 Firefox 中的SyntaxError: missing ; before statement
而非 > handleResponse 回调,当我在浏览器中粘贴链接http://api.giphy.com/v1/gifs/search?q=funny+cat&api_key=dc6zaTOxFJmzC时,我得到了正确的JSON数据?