组件中未定义的变量
P粉709307865
P粉709307865 2023-09-06 10:48:25
0
1
850

我的服务器通过 apache2 在 Linux 中工作,但通过 Windows 机器上的 artisan 服务在开发环境中工作得很好。

错误是未定义变量$washProgram

  • resources/views/components/expedition-data.blade.php
<div>
   Programa {{ $washProgram->name }}
</div>
  • app/View/Components/expeditionData.php
<?php

namespace App\View\Components;

use Illuminate\View\Component;

class expeditionData extends Component
{

    public $op;
    public $washProgram;

    /**
     * Create a new component instance.
     *
     * @return void
     */
    public function __construct($op)
    {
        $this->op = $op;
        $this->washProgram = $op->getSelectedWashProgram();
    }

    /**
     * Get the view / contents that represent the component.
     *
     * @return \Illuminate\View\View|string
     */
    public function render()
    {
        return view('components.expedition-data');
    }
}
  • 调用 Blade 中的组件
<x-expedition-data :op="$op" />

我想使用该组件生成一个视图,但它给了我这个错误。

P粉709307865
P粉709307865

全部回复(1)
P粉384366923

非常感谢。 Linux 区分大小写。组件的文件名已更改,以便它们全部以大写字母开头:

expeditionData.php -> ExpeditionData.php
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板