標籤: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