Laravel LiveWire模型集默认值

发布于 2025-01-22 21:04:35 字数 453 浏览 0 评论 0原文

我有一个通过迭代循环生成的桌子。问题在于类型日期的输入字段。当我尝试附加LiveWire模型时,它不会显示来自数据库的值。

<input wire:model.defer="DurationTo"  class="form-control form-control-solid ps-12" placeholder="Select a date" name="duration_to" type="date"
                   value="{{ $table->duration_to->format('Y-m-d') }}"/>

如果我删除

wire:model.defer="DurationTo"

,则它开始显示默认值,否则显示为空。但是,如果我删除绑定,那么显然我将在模型中没有任何更新。请指导什么是更好的方法

I have a table that I am generating through an iterative loop. The issue is that there is an input field of type date. When I try to attach my livewire model, it doesn't show the value coming from the database.

<input wire:model.defer="DurationTo"  class="form-control form-control-solid ps-12" placeholder="Select a date" name="duration_to" type="date"
                   value="{{ $table->duration_to->format('Y-m-d') }}"/>

If I remove

wire:model.defer="DurationTo"

Then it start showing the default value otherwise it show empty. But if I remove binding then obviously I will get nothing in the model to update. Kindly guide what is the better way of doing this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文