Skip to main content

Ajax and API

API - Application Program Interface 

It is a  set of functions and procedures that allow the creation of applications which access the features or data of an operating system, application, or other service.

what i understood..

It is like a middle ware between user and the database ( can made from java/PHP/java script) .
Not giving the full access to the user
Hiding the real data ( like a SQL view or can be real data too)
in web services we use " ajax " to access the  database through API ( not always )

user uses --> ajax --> to access API -->database

AJAX - Asynchronous JavaScript and XML

 In a nutshell, it is the use of the XMLHttpRequest object to communicate with server-side scripts. It can send as well as receive information in a variety of formats, including JSON, XML, HTML, and even text files

AJAX is a developer's dream, because you can:
  • Update a web page without reloading the page
  • Request data from a server - after the page has loaded
  • Receive data from a server - after the page has loaded
  • Send data to a server - in the background

what is learnt in lab class..


Write a function to call GitHub API (https://api.github.com/users) and get users and return the users to the caller.

function getSomething() {
    $.ajax({
        url: 'https://api.github.com/users',
        method: 'POST',
        success: function (data) {
            console.log(data);
        },
        error: function (data) {
            console.log(data);
        }
    });
};

getSomething();

Comments

  1. LuckyClub - LuckyClub Live Casino Review 2021
    Lucky Club is a great way to try our new game and try out the latest slots. This luckyclub game allows you to experience more than just slots. The

    ReplyDelete

Post a Comment

Popular posts from this blog

MongoDB Up & Running

MongoDB Up & Running What is mongoDB ?             Mongo DB has rapidly grown to become a popular database for web applications and is a perfect fit for Node.JS applications, letting you write Javascript for the client, backend and database layer. Its schemaless nature is a better match to our constantly evolving data structures in web applications, and the integrated support for location queries is a bonus that’s hard to ignore. Throw in Replica Sets for scaling, and we’re looking at really nice platform to grow your storage needs now and in the future. MongoDB is an   open source   database that uses a document-oriented data model.MongoDB is one of several   database   types to arise in the mid-2000s under the   NoSQL   banner. Instead of using   tables   and   rows   as in   relational databases, MongoDB is built on an architecture of collections and documents. Do...

What is a java HashMap and How it works ?

What is a java HashMap and How it works ? What is a HashMap ?             The HashMap in Java is one of the most popular Collection class among Java programmers. The HashMap is a data structure, based on hashing, which allows you to store an object as key value pair, an advantage of using HashMap is that you can retrieve object on constant time i.e. O(1) if you know the key. The HashMap class implements Map interface and supports Generics from Java 1.5 release, which makes it type safe. There are a couple of more Collections, which provides similar functionalities like HashMap, which can also be used to store key value pair. Hashtable is one of them, but Hashtable is synchronized and performs poorly in a single threaded environment. one relatively new is ConcurrentHashMap, which provides better performance than Hashtable in a concurrent environment and should be preferred. How HashMap works ?     ...