yinxu46/frappe-amap

v1.0.4 2024-04-02 06:46 UTC

This package is not auto-updated.

Last update: 2024-05-14 07:33:43 UTC


README

thinkphp6|thinkphp8 高德地图

安装

composer require yinxu46/frappe-amap

使用

路由中使用

Route::rule('/api.web.v1/:__id$',function (Request $request, string $__id) {
    try {
        $response = frappe_api($__id);
        return api_success($response);
    }catch (\Throwable $throwable) {
        return api_error($throwable);
    }
})->middleware([
    # 设置中间键
]);