我最近开发了一个应用程序,几天前我注意到我将R更新为4.1.2。在对应用程序做了一些更改之后,我使用发布按钮部署到shinyapps.io。部署控制台抛出以下错误并失败:
Error: Unhandled Exception: Child Task 1045191965 failed: Error building image: R version 4.1.2 currently unavailable
Execution halted
现在,我以前已经部署过很多次了,这是更新R之后的第一次部署,我没有包含任何代码,因为我的app.R已经超过1500行了,而且它实际上与我所做的任何更改都没有关
我有三种关系模式:
Tour.php
class Tour extends Model
{
public function category()
{
return $this->belongsTo('App\TourCategory', 'category_id');
}
public function region()
{
return $this->belongsTo('App\Region');
}
}
TourCategory.php
cla