0
我的azure服務器上有一個.php script,它返回JSON。當您訪問瀏覽器中的鏈接時,會顯示JSON。webhost(azure)阻止ajax調用
我想對此腳本進行ajax調用,但是沒有任何ajax調用服務器可以通過。我不知道爲什麼。
webpage that executes a failed ajax call to the .php script
它可能是與跨域Ajax調用?
我的azure服務器上有一個.php script,它返回JSON。當您訪問瀏覽器中的鏈接時,會顯示JSON。webhost(azure)阻止ajax調用
我想對此腳本進行ajax調用,但是沒有任何ajax調用服務器可以通過。我不知道爲什麼。
webpage that executes a failed ajax call to the .php script
它可能是與跨域Ajax調用?
我發現這裏的解決方案:origin-is-not-allowed-by-access-control-allow-origin ...
這是誰阻止跨域Ajax調用瀏覽器。
C#:
Access-Control-Allow-Origin: *
PHP:
<?php header('Access-Control-Allow-Origin: *'); ?>
你可以讓你的腳本中加入給你的腳本的頭球每個域接收Ajax調用克服這個