我正在使用PFFile存储图像。如果图像已经下载,我想直接访问它。如果没有,我想使用背景方法。但是,如果使用getData,则会收到以下警告:
Warning: A long-running operation is being executed on the main thread.
Break on warnBlockingOperationOnMainThread() to debug.
因为我知道数据是可用的,所以这个警告是不必要的,并且扰乱了我的日志。是否有任何方法可以访问PFFile的数据而不触发警告?
我正在查看我的崩溃日志,并注意到“未能及时恢复”
Application Specific Information:
com.myApp.MyApp failed to resume in time
elapsed total CPU time (seconds): 0.680 (user 0.350, system 0.330), 7% CPU
elapsed application CPU time (seconds): 0.130, 1% CPU
我怎么才能及时恢复呢?
我希望删除模型详细信息下面的默认动作日志UI部分。
如果删除“可操作”特性,则操作日志完全不可用,包括选项卡式窗格。
因此,我尝试创建一个新的类来扩展ActionResource类来处理UI,但是我找不到控制UI部分的接口。哪些类/特性/接口控制操作日志,以及如何将其隐藏在视图中?
<?php
namespace App\Nova;
use Illuminate\Http\Request;
use Laravel\Nova\Actions\ActionResource;
class BetterActionResource extends ActionResource
{