在Google Chrome 中啟用從本機檔案載入XMLHttpRequest
當使用XMLHttpRequest 從本機檔案執行HTTP 要求時,瀏覽器經常會遇到Access-控制-允許-起源錯誤。出現這種情況是因為來自本機檔案的請求受到安全機制的限制。
為了在 Google Chrome 中專門解決此問題,用戶已訴諸使用 --disable-web-security 開關。然而,出於安全考慮,強烈建議不要採用這種方法。
相反,Google Chrome 提供了更安全的替代方案,即 --allow-file-access-from-files 開關。此開關允許 XMLHttpRequest 從其他本機文件存取文件,有效繞過安全限制。
如何使用 --allow-file-access-from-files 開關:
Windows:
輸入以下命令:
chrome.exe --allow-file-access-from-files
Mac:
輸入以下指令:
open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files
其他注意事項:
以上是如何在 Google Chrome 中允許 XMLHttpRequest 存取本機檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!