thinkphp8 blade view engine
composer require isszz/think-blade
<?php
// view.php 模板配置, 多应用时, 每个应用的配置可以不同
return [
// 模板引擎类型使用Blade
'type' => 'Blade',
// 模版主题
'theme' => '',
// 缓存路径
'compiled' => '',
// 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写 3 保持操作方法
'auto_rule' => 1,
// 视图目录名
'view_dir_name' => 'view',
// 模板起始路径
'view_path' => '',
// 模板后缀
'view_suffix' => 'html.php',
// 模板文件名分隔符
'view_depr' => DIRECTORY_SEPARATOR,
// 是否开启模板编译缓存,设为false则每次都会重新编译
'tpl_cache' => true,
];
容器中的类解析调用,对于已经绑定的类标识,会自动快速实例化
@inject('test', 'app\service\Test')
<div>{{ $test->info() }}</div>
Blade 允许你使用 directive 方法自定义指令。当 Blade 编译器遇到自定义指令时,这会调用该指令包含的表达式提供的回调。
use think\facade\View;
View::directive('time2str', function($expression) {
return "<?php echo \Helper::time2str($expression); ?>";
});
用法, 当然你也可以传递参数
@time2str(time(), 'Y-m-d H:i')
在定义简单的、自定义条件语句时,编写自定义指令比必须的步骤复杂。在这种情况下,think Blade 提供了 View::if 方法,它允许你使用闭包快速度定义条件指令。例如,定义一个校验当前应用的自定义指令
use think\facade\View;
View::if('app', function (...$apps) {
$appName = app('http')->getName();
if (count($apps) > 0) {
$patterns = is_array($apps[0]) ? $apps[0] : (array) $apps;
return in_array($appName, $patterns);
}
return $appName;
});
一旦定义了自定义条件指令,就可以在模板中轻松的使用:
@app('admin')
// 后台应用
@elseapp('api')
// api应用
@elseapp(['index', 'common'])
// index和common应用
@else
// 其他应用
@endapp
* @method auth->check 判断当前用户是否登录
* @method auth->guest 判断当前用户是否为游客
* @method auth->can 用户是否有权限
* @method auth->cannot 用户不能执行这个权限
* @method auth->any 用户是否具有来自给定能力列表的任何授权能力
use think\facade\View;
/**
* 认证
*/
class Auth
{
protected $app;
public function __construct(App $app)
{
$this->app = $app;
$this->request = $this->app->request;
}
/**
* 初始化
*
* @param Request $request
* @param Closure $next
* @return Response
*/
public function handle($request, Closure $next)
{
// 这个类自己实现, 需要用到的方法, 参见上面
$auth = new \app\admin\service\Auth($this->app);
// 容器注入
$this->app->bind('auth', $auth);
// 在线用户信息, 未登录返回guest用户
$user = $auth->user();
// 模版变量注入
View::share([
'auth' => $auth,
'user' => $user,
]);
return $next($request);
}
}
该@class
指令有条件地编译 CSS class 样式。该指令接收一个数组,其中数组的键包含你希望添加的一个或多个样式的类名,而值是一个布尔表达式。如果数组元素有一个数值的键,它将始终包含在呈现的 class 列表中:
// 多行php代码
@php
$isActive = false;
$hasError = true;
@endphp
<span @class([
'p-4',
'font-bold' => $isActive,
'text-gray-500' => !$isActive,
'bg-red' => $hasError,
])></span>
// 结果:
<span class="p-4 text-gray-500 bg-red"></span>
// 单行php代码可以简写如下
@php($isActive = true)
<span @style([
'background-color: red',
'font-weight: bold' => $isActive,
])></span>
// 结果:
<span style="background-color: red; font-weight: bold;"></span>
为方便起见,你可以使用该@checked
指令轻松判断给定的 HTML 复选框输入是否被「选中(checked)」。如果提供的条件判断为true
,则此指令将回显checked
:
<input type="checkbox" name="active" value="active" @checked(true) />
@php
$versions = [
'1.0',
'1.2',
'1.3',
'1.4',
'1.5',
];
@endphp
<select name="version">
@foreach ($versions as $version)
<option value="{{ $version }}" @selected('1.2' == $version)>
{{ $version }}
</option>
@endforeach
</select>
<button type="submit" @disabled($errors->isNotEmpty())>Submit</button>
<input type="email" name="email" value="email@laravel.com" @readonly(1) />
<input type="text" name="title" value="title" @required(1) />
@csrf
// 也支持参数, 同thinkphp的Request::buildToken()参数相同
@csrf($name, $type)
// 结果:
<input type="hidden" name="__token__" value="a47f4452e760ae12af62c11fbea5c65e">
由于 HTML 表单不能发出 PUT
、PATCH
或 DELETE
请求,因此需要添加一个隐藏的 __method__
字段来欺骗这些 HTTP 动词。 @method
Blade 指令可以为你创建此字段:
<form action="/foo/bar" method="POST">
@method('PUT', '___method')
...
</form>
<!-- /app/index/view/default/components/button.html.php -->
<button type="{{ $type }}" {{ $attributes->whereDoesntStartWith('name') }}>{{ $name }}</button>
// 引用
<x-button type="submit" name="提交" class="btn btn-submit" />
<!-- /app/index/view/default/components/alert.html.php -->
<div class="alert">
<h3 {{ $title->attributes }}>{{ $title ?? '' }}</h3>
{{ $slot }}
</div>
// 引用
<x-alert type="info" class="mb-4">
<x-slot:title class="color-red">
Server Error
</x-slot>
<strong>Whoops!</strong> Something went wrong!
</x-alert>