gpt4 book ai didi

php - 分解从数据库中检索到的值并将其显示在 laravel 的 ListView 中

转载 作者:行者123 更新时间:2023-11-29 06:00:55 25 4
gpt4 key购买 nike

Controller 代码:

    public function testjoin()
{
$test=supportedversionsModel::join('MainHaghway', 'MainHaghway.buildid', '=','HaghwaySupports.build_id')
->select('MainHaghway.versions','HaghwaySupports.supportedversions','MainHaghway.timestamputc','MainHaghway.updatedescription','MainHaghway.checkcount','MainHaghway.statuscode')->get();
return view('haghwayUpdate',compact('test'));

}
}

这里我连接了两个具有一对多关系的表。并将结果返回给 View 。

查看代码:

      <table class="table" id="table">

<thead>
<tr class="header">
<th valign="middle" width="3%">Versions</th>
<th valign="middle" width="2%">Supportedversions</th>
<th valign="middle" width="7%">Release Date</th>
<th valign="middle" width="3%">Type</th>
<th valign="middle" width="7%">Description</th>
<th valign="middle" width="3%">Actions</th>
<th valign="middle" width="3%">Downloader</th>
<th valign="middle" width="3%">Beta code</th>

</tr>
</thead>
<tbody>
@foreach($test as $user)
<tr>
<td>{{$user->versions}}</td>
<td>{{$user->supportedversions}}</td>
<td>{{$user->timestamputc}}</td>
<td><a href="">Groups</a></td>
<td>{{$user->updatedescription}}</td>
<td>{{$user->statuscode}}</td>
<td>{{$user->checkcount}}</td>
**<td>{{"<li>" . str_replace ("," , "</li><li>" , $user->supportedversions) . "</li>"}}</td>**
<td></td>


</tr>
@endforeach

</tbody>

</table>

这是我的 View 代码。这里我只是在表中显示检索到的值。 The attached image file is the table view that displays the db values. But here in the second column holds the imploded values,there I need to explode the values and display it in list view.

最佳答案

我能理解你需要做什么。

根据 Laravel Documentation关于插槽,即 {{ }}。在 {{ }} 中写入的任何内容,除了变量都被视为字符串(Laravel 中的 echo)。

因此,根据您的要求,您应该使用 {!! !!},它更先进,它允许您将 HTML 元素用作字符串。您可以在 this answer 中找到更多详细信息。 .

关于php - 分解从数据库中检索到的值并将其显示在 laravel 的 ListView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45026848/

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