19
我使用的頁面加載驗證碼的加載,但正是因爲一些安全原因阻止內容安全策略:該頁面的設置攔截資源
我面臨的問題:
Content Security Policy: The page's settings blocked the loading of a resource at http://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit ("script-src http://test.com:8080 'unsafe-inline' 'unsafe-eval'").
我有使用以下js和元標記:
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
<script src="http://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script>
如果我是你,我會嘗試使用服務器端代碼,而不是JavaScript。 JS對CORS和類似的東西不太好。谷歌確實有這個選項.. – Gogol