需要帮助构建AJAX get request&修复控制台错误

时间:2017-08-23 00:53:51

标签: jquery ajax cors fetch-api

我需要从外部链接(api)发出GET请求,但我仍然继续谷歌并相应地更改我的代码,但没有任何工作..

这些是我尝过的......


"cmd": "/bin/sh -c \"/invoker/bin/invoker `hostname | tr -dc '0-9'` >> /dev/stderr\""

...

<script>
    $.getJSON('url-goes-here?' + dataString, function(json_data){
       alert(JSON.stringify(json_data));
</script>

我已经通过邮递员检查了api本身的问题是否正常工作。

我也在控制台

中收到此错误
<script>
     fetch("https://url-goes-here", {
          mode: 'no-cors'
        })
         .then(function(resp) {
           console.log(data.needed_total) // variables in api
         });
     .catch(function(err) {
       console.log('Fetch Error :-S', err);
     });
</script>

我的脚本是

1 个答案:

答案 0 :(得分:1)

就这么简单:

&#13;
&#13;
fetch('https://sampledomain.com/api')
  .then(res => res.json())
  .then(res => {
    console.log(res);
  })
&#13;
&#13;
&#13;