laravel LiveWire数据绑定问题,(未捕获引用错误:Livewire未定义)

sqougxex  于 2022-12-14  发布在  其他
关注(0)|答案(1)|浏览(114)

我是LiveWire的新手。我认为我做的一切都是正确的。(根据文档。)为什么我没有得到互动?谢谢。
---欢迎,刀锋---

<html>
<head>
    <title>Livewire</title>
    @livewireStyles
</head>
<body>
    @livewire('hello-world')

    @livewireScripts
</body>
</html>

---控制器---

class HelloWorld extends Component
{
    public $name = 'Ugur';
    
    public function render()
    {
        return view('livewire.hello-world');
    }
}

---你好--世界.刀锋---

<div>
    <input wire:model="name" type="text">

    Hello {{ $name }}
</div>

When the input value changes, the value on the side does not change.

wgx48brx

wgx48brx1#

已解决!
我变了;
文件

APP_URL=http:/localhost //TO--> APP_URL=localhost/[project_name]/public


config/livewire.php

'asset_url' => null, //TO--> 'asset_url' => env('APP_URL'),

Source

相关问题