Laravel Nova自动刷新资源

问题描述

根据Laravel Nova网站,版本3.10.0具有以下新功能

Added new "standalone" actions for running actions without selecting resources. #961
Added ability for resources to auto-refresh their index listing. #957

到拉取请求的链接当然不起作用,因为这不是开源项目。

我在文档中找不到有关此新功能的任何内容。如何使用它们?

解决方法

在您的操作类中,添加以下代码,以覆盖默认值,在/nova/src/Actions/Action.php中将其设置为false。

/**
* Indicates if the action can be run without any models.
*
* @var bool
*/
public $standalone = true;