search

Home  >  Q&A  >  body text

Requesting jsonp data - Stack Overflow

I don’t know why I can’t get the data!

曾经蜡笔没有小新曾经蜡笔没有小新2763 days ago735

reply all(2)I'll reply

  • 三叔

    三叔2017-06-13 09:24:27

    The problem is not described clearly

    reply
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-06-13 09:24:27

    Data can be obtained using JQuery

        function callback(data) {
            console.log(data);
        }
        $(function () {
            $.ajax({
                type:"get",
                dataType:"jsonp",
                url:"http://api.asilu.com/weather/",
                jsonpCallback:"callback"
            });
        })

    reply
    0
  • Cancelreply