1
這是我的腳本:發送Ajax請求:跨來源請求阻止
$.post('index.php?r=site/filterbyprice',{
price_range:values,
_csrf : $("#csrftoken").val()
}
,function(r){
console.log(r);
if(r==""){
$("#all-ads").html('<div class="error-page"></div>');
}
else{
$("#all-ads").html(r);
}
});
控制器代碼:
public function actioAbc(){
echo 'inside abc';
}
我面臨着以下錯誤:跨來源請求阻止:將同源策略不允許在http://mandigoods.com/frontend/web/index.php?r=site/abc處讀取遠程資源。 (原因:CORS頭「接入控制 -
http://stackoverflow.com/questions/24199595/how-to-make-ajax-call-in-yii2 – Bloodhound