How to get JSON data from the URL (REST API) to UI using jQuery or plain JavaScript?

后端 未结 4 2006
悲哀的现实
悲哀的现实 2021-02-04 08:26

I have a URL \"http://localhost:8888/api/rest/abc\" which will give following json data. I wants to get this data in my UI using Jquery or java script. I\'m trying

4条回答
  •  情歌与酒
    2021-02-04 09:00

    Send a ajax request to your server like this in your js and get your result in success function.

    jQuery.ajax({
                url: "/rest/abc",
                type: "GET",
    
                contentType: 'application/json; charset=utf-8',
                success: function(resultData) {
                    //here is your json.
                      // process it
    
                },
                error : function(jqXHR, textStatus, errorThrown) {
                },
    
                timeout: 120000,
            });
    

    at server side send response as json type.

    And you can use jQuery.getJSON for your application.

提交回复
热议问题