码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp 响应对象

时间:2018-06-05 12:19:13      阅读:461      评论:0      收藏:0      [点我收藏+]

标签:字符   min   php   think   UNC   内容   格式   efault   ret   

<?php
namespace app\admin\controller;
use think\Request;
class Index{
    public function index(Request $request){
        $res=[
            ‘code‘=>200,
            ‘result‘=>[
                ‘list‘=>[1,2,3,4,5]
            ]
        ];
        return var_dump($res);
    }
}
?>

页面返回内容,用return

return ‘123‘;代替echo ‘123‘;返回字符串

返回类型的控制

thinkphp 下 convention.php  ‘default_return_type‘控制,默认输出类型

使用动态配置,返回json格式

<?php
namespace app\admin\controller;
use think\Request;
use think\Config;
class Index{
    public function index(Request $request){
        $res=[
            ‘code‘=>200,
            ‘result‘=>[
                ‘list‘=>[1,2,3,4,5]
            ]
        ];
        Config::set(‘default_return_type‘,‘json‘);
        return $res;
    }
}
?>

可以新建api模块,设置默认返回类型为json;

conf/api/config.php

<?php
return [
‘default_return_type‘=>‘json‘
];
?>

 

thinkphp 响应对象

标签:字符   min   php   think   UNC   内容   格式   efault   ret   

原文地址:https://www.cnblogs.com/lgxtry/p/9139042.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!