本文给大家分享的是使用thinkphp框架开发移动端接口的2种方法,一种是开发api,另外一种是实现移动端访问自动切换移动主题模板,从而实现伪app访问,下面我们就
方案一:给原生app提供api接口
使用tp框架时 放在common文件夹下文件名就叫function.php
'success','msg' => $msg,'data' =>$data ); print json_encode($result);}/** * @param null $msg 返回具体错误的提示信息 * @param flag success curd 操作失败 * function descript:返回标志信息 ‘error',和提示信息的json 数组 */function returnapierror($msg = null){ $result = array('flag' => 'error','msg' => $msg, ); print json_encode($result);}/** * @param null $msg 返回具体错误的提示信息 * @param flag success curd 操作失败 * function descript:返回标志信息 ‘error',和提示信息,当前系统繁忙,请稍后重试; */function returnapierrorexample(){ $result = array('flag' => 'error','msg' => '当前系统繁忙,请稍后重试!', ); print json_encode($result);}/** * @param null $data * @return array|mixed|null * function descript: 过滤post提交的参数; * */function checkdatapost($data = null){ if(!empty($data)){$data = explode(',',$data);foreach($data as $k=>$v){if((!isset($_post[$k]))||(empty($_post[$k]))){if($_post[$k]!==0 && $_post[$k]!=='0'){returnapierror($k.'值为空!');}}}unset($data);$data = i('post.');unset($data['_url_'],$data['token']);return $data; }}/** * @param null $data * @return array|mixed|null * function descript: 过滤get提交的参数; * */function checkdataget($data = null){ if(!empty($data)){$data = explode(',',$data);foreach($data as $k=>$v){if((!isset($_get[$k]))||(empty($_get[$k]))){if($_get[$k]!==0 && $_get[$k]!=='0'){returnapierror($k.'值为空!');}}}unset($data);$data = i('get.');unset($data['_url_'],$data['token']);return $data; }}
查询单个果品详细信息
/** * 发布模块 ** 获取信息单个果品详细信息 * */ public function getmyreleaseinfo(){//检查是否通过post方法得到数据checkdatapost('id');$where['id'] = $_post['id'];$field[] = 'id,fruit_name,high_price,low_price,address,size,weight,fruit_pic,remark';$releaseinfo = $this->release_obj->findrelease($where,$field);$releaseinfo['remark'] = mb_substr($releaseinfo['remark'],0,49,'utf-8').'...';//多张图地址按逗号截取字符串,截取后如果存在空数组则需要过滤掉$releaseinfo['fruit_pic'] = array_filter(explode(',', $releaseinfo['fruit_pic']));$fruit_pic = $releaseinfo['fruit_pic'];unset($releaseinfo['fruit_pic']);//为图片添加存储路径foreach($fruit_pic as $k=>$v ){$releaseinfo['fruit_pic'][] = 'http://'.$_server['http_host'].'/uploads/release/'.$v;}if($releaseinfo){returnapisuccess('',$releaseinfo);}else{returnapierror( '什么也没查到(+_+)!');} }
findrelease() 方法的model
/** * 查询一条数据 */ public function findrelease($where,$field){if($where['status'] == '' || empty($where['status'])){$where['status'] = array('neq','9');}$result = $this->where($where)->field($field)->find();return $result; }
app端接收到的数据(解码json之后)
{ flag: success, message: , responselist: {id: 2,fruit_name: 苹果,high_price: 8.0,low_price: 5.0,address: 天津小白楼水果市场,size: 2.0,weight: 2.0,remark: 急需...,fruit_pic: [http://fruit.txunda.com/uploads/release/201508/55599e7514815.png,http://fruit.txunda.com/uploads/release/201508/554f2dc45b526.jpg] }}
app端接收到的数据(原生json串)
复制代码 代码如下:
{flag:success,message:,responselist:{id:2,fruit_name:\u82f9\u679c,high_price:8.0,low_price:5.0,address:\u5929\u6d25\u5c0f\u767d\u697c\u6c34\u679c\u5e02\u573a,size:2.0,weight:2.0,remark:\u6025\u9700...,fruit_pic:[http:\/\/fruit.txunda.com\/uploads\/release\/201508\/55599e7514815.png,http:\/\/fruit.txunda.com\/uploads\/release\/201508\/554f2dc45b526.jpg]}}
方案二:另外我们还可以通过thinkphp实现移动端访问自动切换主题模板,这样也可以做到移动端访问
thinkphp的模板主题机制,,如果只是在pc,只要需修改 default_theme (新版模板主题默认是空,表示不启用模板主题功能)配置项就可以方便的实现多模板主题切换。
但对于移动端和pc端,也许你会设计完全不同的主题风格,且针对不同的来路提供不同的渲染方式,其中一种比较流行的方法是“响应式设计”,但就本人经历而言,要实现完全的“响应式设计”并不是那么容易,且解决兼容问题也是个难题,假设是大型站点,比如:淘宝、百度、拍拍这些,响应式设计肯定是满足不了需求的,而是需要针对手机访问用户提供单独的手机网站。
thinkphp 完全可以实现,而且相当简单。和tpm的智能模版切换引擎一样,只要对来路进行判断处理即可。
一、将 ismobile() 加入到{项目/common/common.php}
