jQuery getJSON to external PHP page

前端 未结 3 1130
花落未央
花落未央 2020-12-14 12:32

I\'ve been trying to make an AJAX request to an external server. I\'ve learned so far that I need to use getJSON to do this because of security reasons ?

Now, I can\

3条回答
  •  情书的邮戳
    2020-12-14 13:04

    The simplest solution would be to add the below code before any output to your test.php file, then you have more flexibility with what methods you use, a standard ajax call should work.

    header ('Access-Control-Allow-Origin: *');
    

    However, use the json callback thing when your getting data from a server beyond your control.

提交回复
热议问题