gpt4 book ai didi

laravel - Str not 类缺失,但我不知道如何定义它

转载 作者:行者123 更新时间:2023-12-02 20:03:42 34 4
gpt4 key购买 nike

Class 'Str' not found (View: C:\wamp\www\laravel\example\resources\views\pages\index.blade.php)

我也尝试过

 use Illuminate\Support\Str;

&使用Str;

最佳答案

在 Controller 中

namespace App\Http\Controllers;

class yourController extends Controller
{
public method yourMethod() {

$truncated = Illuminate\Support\Str::limit('The quick brown fox', 5);
dd($truncated);

}
}

或者

您还可以像下面一样使用 Str:

namespace App\Http\Controllers;

use Illuminate\Support\Str;

class yourController extends Controller
{
public method yourMethod() {

$truncated = Str::limit('The quick brown fox', 5);
dd($truncated);

}
}

您可以在 Controller 文件中像上面那样进行调试

在您的 blade 文件中,您可以使用 Str 辅助函数,如下所示:

<td>{{ Illuminate\Support\Str::limit('The quick brown fox', 5) }}</td>

关于laravel - Str not 类缺失,但我不知道如何定义它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55215615/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com