我在宅基地上使用laravel。我尝试了很多不同的命令,以清除缓存和其他东西,没有任何帮助。
我一直收到这个错误:
let strings = [
{value: "ab", position: 3},
{value: "cd", position: 2},
{value: "ef", position: 1}
];
let string = strings.reduce((sorted, next) => {
sorted[next.position - 1] = next.value;
return sorted;
}, []).join("");
console.log(string); // "efcdab"
我尝试过的是:
file_put_contents(/Users/Victor/Sites/pft/pft-back/storage/framework/cache/data/05/9f/059f793d8b638b8c21ead7edbba382b9e9183fac): failed to open stream: No such file or directory
php artisan cache:clear
php artisan view:clear
php artisan clear-compiled
不知道为什么会发生这种情况,但由于我刚刚开始使用它,所以我很确定因为宅基地。
此外,我尝试了来自宅基地用户和mac用户的所有命令(我在mac上运行宅基地)
答案 0 :(得分:0)
问题是底层存储地图,可以检查storage/framework
,storage/framework/cache
和storage/framework/cache/data
是否有r / w权限,否则会创建它们?