Home  >  Article  >  Backend Development  >  Laravel foreach渲染表中数据的格式有哪些

Laravel foreach渲染表中数据的格式有哪些

PHPz
PHPzOriginal
2016-06-06 20:31:552068browse

Laravel foreach渲染表中数据的格式有哪些

Laravel foreach渲染表中数据的格式有:

列表显示时,运用foreach渲染表中对应的数据

渲染格式:

第一种方式:传输过来的对象形式

@foreach($data as $k => $v)
 
{{$v->name}}
 
@endforeach

第二种方式:传输过来的数组格式

@foreach($data as $v)
 
{{$v[‘name’]}}
 
@endforeach

第三种格式:

<?php foreach ($variable as $key => $value): ?>
 
 
<?php endforeach ?>

 

渲染结果:

Php传输数据:

企业微信截图_15920264173785.png

视图页面渲染:

 企业微信截图_15920264259835.png

浏览器渲染结果:

企业微信截图_15920264308086.png

推荐教程:《laravel开发

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn