API 액세스 HTML / 자바 스크립트 문제
1 대답
- 투표
혼합 콘텐츠 오류가 발생했습니다.요청은 http와 https를 혼합 할 수 없으며 모두 동일해야합니다.const url = 'http://api6.tzscan.io/v3/supply';
를 http s
const url = 'https://api6.tzscan.io/v3/supply';
fetch(url)
.then(resp => resp.json())
.then(({dls}) => {
let span = createNode('span');
span.innerHTML = dls;
append(ul, span);
})
.catch(console.log);
You've encountered a mixed content error. Requests can't be a mixture of http and https, they need to be all of the same, preferably https. Just change the const url = 'http://api6.tzscan.io/v3/supply';
to be https
const url = 'https://api6.tzscan.io/v3/supply';
fetch(url)
.then(resp => resp.json())
.then(({dls}) => {
let span = createNode('span');
span.innerHTML = dls;
append(ul, span);
})
.catch(console.log);
자바 스크립트를 사용하여 Tzscan API에서 데이터를 요청하여 순환 공급을 얻으려고 시도하는 데 문제가 있습니다.
유통 공급을 요청하는 HTML 코드 :
API에서 데이터를 가져 오는 자바 스크립트 코드 :
문제는 HTML 파일을 로컬에서 만들지 만 온라인 이 아닌 경우 어떻게 든 작동한다는 것입니다. .