Openresty+YII2.0下開發高效能RestfulAPI系列3:開發基於php的restfulAPI

來源:互聯網
上載者:User

標籤:openresty lua php

1. nginx.conf中配置訪問url

訪問 api1.yingtrader.com/boquote,就會執行boquote.php代碼。

650) this.width=650;" src="http://s4.51cto.com/wyfs02/M00/82/3A/wKiom1dOs3XisFbWAAD-ptQhK4g266.png" title="圖片10.png" alt="wKiom1dOs3XisFbWAAD-ptQhK4g266.png" />

2. Nginx 實現AJAX跨域請求

要在nginx上啟用跨域請求,需要添加add_header Access-Control*指令。

如下所示:

location/{

add_header ‘Access-Control-Allow-Origin‘ ‘ http://other.subdomain.com ‘;

add_header ‘Access-Control-Allow-Credentials‘ ‘true‘;

add_header ‘Access-Control-Allow-Methods‘ ‘POST, GET, OPTIONS, PUT, DELETE, HEAD‘;

 

...

...

the rest of your configuration here

...

...

 

}

 

注釋如下:

第一條指令:授權從other.subdomain.com的請求

第二條指令:當該標誌為真時,響應於該請求是否可以被暴露

第三天指令:指定請求的方法,可以是GET,POST等

如果需要允許來自任何域的訪問,可以這樣配置:

add_header ‘Access-Control-Allow-Origin‘ ‘*‘;

參考:http://www.ttlsa.com/nginx/how-to-allow-cross-domain-ajax-requests-on-nginx/

 

3. PHP代碼的編寫

⑴ 通過$_POST擷取POST參數

error_reporting(E_ALL^E_NOTICE^E_WARNING);

… …

$login = $_POST[‘useraccount‘];

$volume = $_POST[‘volume‘];

… …

 

⑵ 返回json資料

… …

$ret = array();

if(‘OK‘ == $resarr[0]){

    $ret = [‘success‘=>‘tradeSuccess‘];

}else{

    $ret = [‘error‘=>‘tradeFail‘];

}

echo json_encode($ret);


本文出自 “編程藝術” 部落格,請務必保留此出處http://itsart.blog.51cto.com/1005243/1785263

Openresty+YII2.0下開發高效能RestfulAPI系列3:開發基於php的restfulAPI

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.