为什么 $client 对象显然不为空时会出现此错误?Blade<div class="max-w-md mx-auto"><div class="bg-white shadow-md rounded px-4 pt-6 pb-4 mb-4">{{json_encode($client)}}<div class="mb-4"><label for="code" class="block text-
2024-02-26
我使用 Laravel Livewire 制作了一个多文件上传组件。上传完成后,我想显示已上传的文件而不重新加载页面,如下所示:<div class="grid grid-flow-col auto-cols-max gap-4 mb-5">@foreach ($files as $file)<livewire:file :file="$file"/>@endforeach</div>一次上传一个
2021-12-06
查看文档https://laravel-livewire.com/docs/2.x/events#from-js在 javascript 中使用 Livewire 组件<script>Livewire.emit('postAdded')</script>我不明白 Livewire 是什么?声明的 var?我如何获取它。我需要从 JS 代码中获取某些 var 的值并运行组件方法。我该怎么做?修改后的
2021-09-11
我在我的项目中使用 Livewire 和 Slect2我也有选择 2 javascript 的代码,但选择 2 的值未传递到数据库,这是我的代码我的 Blade 文件<div class="col-12 col-lg-12 col-sm-12"><div wire:ignore><div class="form-group"><label for="exampleInputRounded0">Se
2021-05-10
我正在使用 Livewire 和 select2 来过滤某个表中的记录列表。这是多条件搜索。选择下拉菜单设置为“多个”选项。当我通过选择第一项进行过滤时,列表会更新。当我选择另一项时,列表会更新,但我得到这个:LoadingStates.js:192 Uncaught (in promise) TypeError: Cannot read property 'split' of nullat Lo
2021-05-07
我有一个 Livewire 组件,它是一个产品过滤器。查询都运行正常,但有时它会创建无限循环的请求。您可以在下面的 GIF 中看到这种情况,它是 Laravel 调试栏的捕获。我正在单击一些过滤器,然后突然进入此请求循环。我专门在视图中的过滤器上使用wire:loading.attr="disabled",因此在请求仍在处理时,有人无法选择过滤器。我的代码和一些背景:Livewire 组件use
2020-11-07
我是 Livewire Laravel 的新手,我想使用 laravel 组件的 JS 设置值。HTML <input wire:model="minprice" type="text"><button type="button" id="updateFilter" class="btn btn-white">{{ __("Apply") }}</button>JS const updateFil
2022-12-07
我正在尝试使用此软件包https://github.com/asantibanez/livewire-charts,但是在尝试查看我的图表时会遇到此错误,我只是从文档复制并粘贴它:363484661复制重现行为的步骤:041768522这里有人有经验吗?
2022-05-17
我在发送表单后从 Ajax 获取数据。有一个侦听器正在将属性设置为我的组件。我想要实现的是在提交表单后显示结果。在组件中,模型已被成功检索,但当我想将其显示到我的组件时,我收到错误。directive_manager.js:26 Uncaught (in promise) TypeError: Cannot read property 'getAttributeNames' of nullat _
2020-07-09
从子容器向父容器发送事件时出现此错误。我按照建议使用wire:key,但出现 JS 错误无法读取 null 的属性“指纹”。知道我做错了什么吗?请参阅下面的示例。容器class Container extends Component{public $listeners = ['submit'];public function render(){return view('livewire.conta
2020-11-10
在我的register表单中,我有一个username输入字段,我只想使用以下规则对其进行验证:'required|regex:/^[a-zA-Z]+$/u|min:5|max:15|unique:users'我想获取验证错误并通过另一种方式将其发送到视图,而不是像Laravel实现那样在视图中使用bags消息。例如:<input type="text" class="form-control"n
2021-01-17
我是 Livewire 新手,有一个问题。在我的 Livewire blade 中,我有一个 JS 函数,它调用一个组件方法来更新 $this->questions。 function QuestionBatchRequest() {Livewire.emit('moreQuestions');this.dispatchEvent(new Event('moreQuestions'));}这
2021-05-13
我完全迷路了。我之前用 Livewire + AlpineJS + Laravel 制作过多个应用程序,但出于某种原因,我无法让@click功能在此应用程序中发挥作用。我几乎将代码精简为零,但看不到问题所在。我查看了其他使用@click的应用程序。<div x-data="showAppSettings()"><div @click="whatever(123)">Click here</div>
2021-07-23
我的组件中有一个下拉菜单,似乎导致 Livewire 出现错误。Uncaught (in promise) DOMException: Failed to execute 'setAttribute'on 'Element': '?' is not a valid attribute name.我根据我在故障排除部分下的文档中阅读的内容添加了wire:key代码,但似乎没有帮助。它会按应有的方式更
2022-02-24
我想将数据从 Livewire 组件 A 传递到 Livewire 组件 B。目标是在需要时打开社交图标栏。这是我的设置:组件 1 类:<?phpnamespace App\Http\Livewire;use Livewire\Component;class SocialShareBar extends Component{public $show;protected $listeners = [
2023-01-20