我正在尝试使用$ http.jsonp方法进行以下休息调用
对于以下休息api,它返回一个文本普通字符串,如0 1 1 1/1 * ? *
我得到了响应,但是我收到以下错误Uncaught SyntaxError: Unexpected number
这是我的代码我正在使用angularjs 1.5.7
var url = 'http://www.cronmaker.com/rest/'
+ 'hourly/at?hour=1&minute=1&every=1';
$sce.trustAsResourceUrl(url);
return $http.jsonp(url, {jsonpCallbackParam: 'callback', transformResponse: false})
.success(function (data) {
console.log(data);
});
但是我收到以下错误
{"status":404,"config":{"method":"JSONP","transformRequest":[null],"transformResponse":false,"jsonpCallbackParam":"callback","url":"http://www.cronmaker.com/rest/hourly/at?hour=1&minute=1&every=1","headers":{"Accept":"application/json, text/plain, */*"},"cached":false},"statusText":"error"}