去评论
dz插件网

Discuz!Q SaaS版 插件开发Demo New

哥斯拉
2024/10/24 11:16:57
1.起个名字,比如插件标识符:identify
2.接口路由

本地开发环境使用在文件
  1. routes/apiv3.php
添加路由URL
  1. $route->get('plugin/identify/test', 'plugin.identify.test', ApiController\Plugin\Identify\TestController::class);
3.在app/Api/Controller/Plugin目录中新建目录:Identify(首字母大写)
4.以get的路由test为例,新建Ctroller文件:TestController.php,里面内容

5.在App\Api\Controller\Plugin\Identify目录中新建view目录,里面放置编译完成的html、js等文件

demo示例