我需要从外部链接(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>
我的脚本是
答案 0 :(得分:1)
就这么简单:
fetch('https://sampledomain.com/api')
.then(res => res.json())
.then(res => {
console.log(res);
})
&#13;