所属分类:php教程
Laravel 团队发布了9.35版本,它有一个新的令人兴奋的备用邮件语法、一个Eloquent的 “严格模式” 功能等。
Taylor Otwell 通过返回 “指定可邮件内容和属性的精简对象”,贡献了一个可邮件语法。
这是他的一个例子 pull request description:
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Address;
use Illuminate\Mail\Mailables\Attachment;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class InvoicePaid extends Mailable
{
use Queueable, SerializesModels;
/**
* 创建一个邮件实例
*
* @return void
*/
public function __construct()
{
//
}
/**
* 获取邮件信封
*
* @return \Illuminate\Mail\Mailables\Envelope
*/
public function envelope()
{
return new Envelope(
subject: 'Invoice Paid',
cc: [new Address('foo@example.com', 'Example Name')],
tags: [],
metadata: [],
);
}
/**
* 获取邮件内容定义
*
* @return \Illuminate\Mail\Mailables\Content
*/
public function content()
{
return new Content(
view: 'html-view-name',
text: 'text-view-name',
);
}
/**
* 获取邮件的附件
*
* @return \Illuminate\Mail\Mailables\Attachment[]
*/
public function attachments()
{
return [
Attachment::fromPath('/path/to/file'),
];
}
}
登录后复制
使用build()
定义邮件的传统方式不会被删除。 我喜欢上面的例子是因为使用 PHP 8 的命名参数更一目了然。
Chris Morrell 和 Taylor Otwell 合作开发了 Eloquent 严格模式,该模式支持以下功能:
要在开发中使用严格模式,方法是将以下内容添加到已注册服务提供者的 boot()
方法中:
Model::shouldBeStrict();
登录后复制
shouldBeStrict()
方法是启用以下所有功能的快捷方式:
Model::preventLazyLoading();
Model::preventSilentlyDiscardingAttributes();
Model::preventsAccessingMissingAttributes();
登录后复制
Andrew Brown 提供了使用以下路由语法加载带有资源路由的废弃模型的能力:
// 所有终结点
Route::resource('users', UserController::class)->withTrashed();
// 仅`显示`
Route::resource('users', UserController::class)->withTrashed(['show']);
登录后复制
你可以在GitHub上看到下面完整的新功能和更新列表以及[9.34.0]和9.35.0](github.com/laravel/framework/compa...) 之间的区别。以下发行说明直接来自 changelog:
Illuminate/Database/Eloquent/Model::shouldBeStrict()
和其他 (#44283)make:cast --inbound
,所以它是一个布尔选项,而不是值 (#44505)Model::without Timestamps()
返回回调的返回值 (#44457)原文地址:https://laravel-news.com/laravel-9-35-0
译文地址:https://learnku.com/laravel/t/72658
以上就是Laravel 9.35 发布啦!看看都有哪些新变化?的详细内容,更多请关注zzsucai.com其它相关文章!