Difference between revisions of "Main Page"
Jump to navigation
Jump to search
Networks of Care
Line 17: | Line 17: | ||
<script> | <script> | ||
− | + | var apiEndpoint = "https://en.wikipedia.org/w/api.php"; | |
− | var | + | var params = "action=query&list=random&rnlimit=3&format=json"; |
− | |||
− | |||
− | |||
− | + | /** | |
− | + | * The function to wrap the result | |
− | + | */ | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
var callback = function (response) { | var callback = function (response) { | ||
− | + | var pages = response.query.random; // Process the output to get the titles | |
− | + | Object.keys(pages).forEach(function(key) { | |
− | + | console.log(pages[key].title); | |
− | + | }); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
}; | }; | ||
var scriptTag = document.createElement("script"); // Dynamically create a "script" tag | var scriptTag = document.createElement("script"); // Dynamically create a "script" tag | ||
scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string | scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string | ||
+ | |||
document.body.appendChild(scriptTag); // Add the script tag to the document | document.body.appendChild(scriptTag); // Add the script tag to the document | ||
− | |||
</script> | </script> | ||
− | |||
</body> | </body> | ||
</html> | </html> |
Revision as of 14:55, 6 April 2020