1. 程式人生 > >ci 框架兩種解決跨域問題的方法

ci 框架兩種解決跨域問題的方法

1、$this->output->set_header("Access-Control-Allow-Origin: * ");
$this->output->set_output(json_encode(array("name" => "hello woody"))); //返回json格式的報文
2、header("Access-Control-Allow-Origin: * "); $this->output->set_output(json_encode(array("name" => "hello woody"))); //返回json格式的報文例子:重點是紅色圓圈位置