>백엔드 개발 >PHP 튜토리얼 >javascript - php做app接口的问题

javascript - php做app接口的问题

WBOY
WBOY원래의
2016-06-06 20:09:29926검색

这是客户端的代码:

<code>        $(document).ready(function(){
            $("button").click(function(){
                $.ajax({
                    url: 'server.php',
                    type: 'POST',
                    timeout: 30000,
                    error: function(){
                        alert('请求出错');
                    },
                    success: function(msg){
                        alert(msg);
                    }
                });
            });
        });
    </code>

服务端代码:

<code><?php $user = $_POST['username'];

$pass = $_POST['password'];

//连接数据库
mysql_connect('xxx','xxx','xxx') or die("数据库连接失败");
//设置编码
mysql_query('set names utf8');
//选择数据库
mysql_query("USE upin");
$res = mysql_query("SELECT * FROM upin_production_area");
$rows = array();
//获取结果集
while($row = mysql_fetch_array($res)){
    $rows[] = $row;
}
//json编码
echo json_encode($rows);</code></code>

我只知道大概是这个原理,不知道具体怎么做规范,求教!

回复内容:

这是客户端的代码:

<code>        $(document).ready(function(){
            $("button").click(function(){
                $.ajax({
                    url: 'server.php',
                    type: 'POST',
                    timeout: 30000,
                    error: function(){
                        alert('请求出错');
                    },
                    success: function(msg){
                        alert(msg);
                    }
                });
            });
        });
    </code>

服务端代码:

<code><?php $user = $_POST['username'];

$pass = $_POST['password'];

//连接数据库
mysql_connect('xxx','xxx','xxx') or die("数据库连接失败");
//设置编码
mysql_query('set names utf8');
//选择数据库
mysql_query("USE upin");
$res = mysql_query("SELECT * FROM upin_production_area");
$rows = array();
//获取结果集
while($row = mysql_fetch_array($res)){
    $rows[] = $row;
}
//json编码
echo json_encode($rows);</code></code>

我只知道大概是这个原理,不知道具体怎么做规范,求教!

RESTful API 设计指南[阮一峰]

http://www.ruanyifeng.com/blog/2014/05/restful_api.html

现在最普遍的就是restful 当然也不一定要按照这个标准来实现,其实最简单的可以实现功能,内部定好接口的格式就可以了

如果在实际开发中
1.响应类response.class,其中包含不同请求方式的处理,需要至少三个变量,$code状态码,$message信息提示,$data处理数据,一个返回值json或者xml
2.单例模式数据库类db.class封装,数据库的操作都放在里面
3.需要一个app接口文档

具体你可以参考慕课网上有一个php app接口的课程,很全面

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.