QQ扫一扫联系
「FastPoster海报生成器」是一个一款快速调用开发海报的工具的模块
① 先部署开源软件 FastPoster https://poster.prodapi.cn/doc/
② 部署完成后在后台配置 FastPoster服务地址 和 Token凭证。
③ 使用模块海报生成代码快速生成海报
<?php
namespace App\Web\Controller;
use Module\FastPoster\Util\FastPosterUtil;
class IndexController extends BaseController
{
public function index()
{
return FastPosterUtil::generateResponse([
'f1' => '名师定制1',
'f2' => '8S服务体系2',
'f3' => '高端资源3',
'f4' => '名师定制4',
'title' => '人工智能机器学习5',
'type' => '高薪就业班6',
'id' => 2,
]);
}
}