1、文件上传验证
2、增加图片上传配置 2、接口功能优化
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
<?php
|
||||
namespace app\api\controller;
|
||||
|
||||
class Index
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
return '<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:)</h1><p> ThinkPHP V5<br/><span style="font-size:30px">十年磨一剑 - 为API开发设计的高性能框架</span></p><span style="font-size:22px;">[ V5.0 版本由 <a href="http://www.qiniu.com" target="qiniu">七牛云</a> 独家赞助发布 ]</span></div><script type="text/javascript" src="http://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script><script type="text/javascript" src="http://ad.topthink.com/Public/static/client.js"></script><thinkad id="ad_bd568ce7058a1091"></thinkad>';
|
||||
}
|
||||
}
|
||||
class Index extends \app\common\controller\Api {
|
||||
|
||||
public $mustToken = true;
|
||||
|
||||
public function usercount(){
|
||||
$this->data['data'] = array('team_num'=>100,'coustomer_num'=>10000);
|
||||
return $this->data;
|
||||
}
|
||||
}
|
||||
36
application/api/controller/Wechat.php
Normal file
36
application/api/controller/Wechat.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
namespace app\api\controller;
|
||||
|
||||
use EasyWeChat\Factory;
|
||||
|
||||
/**
|
||||
* 微信类接口
|
||||
*/
|
||||
class Wechat extends \app\common\controller\Api{
|
||||
|
||||
public function onLogin() {
|
||||
$app = Factory::miniProgram(array(
|
||||
'app_id' => 'wxbcf7b64b8dc6ca72',
|
||||
'secret' => '01f8b10956ea44e6a726f1391af6e3d8',
|
||||
));
|
||||
|
||||
$info = $app->auth->session($this->request->param('code'));
|
||||
|
||||
$this->data['data'] = $info;
|
||||
|
||||
return json($this->data);
|
||||
}
|
||||
|
||||
public function jscode2session(){
|
||||
$app = Factory::miniProgram(array(
|
||||
'app_id' => 'wxbcf7b64b8dc6ca72',
|
||||
'secret' => '01f8b10956ea44e6a726f1391af6e3d8',
|
||||
));
|
||||
|
||||
$info = $app->auth->session($this->request->param('jsCode'));
|
||||
|
||||
$this->data['data'] = $info;
|
||||
|
||||
return json($this->data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user