当我阅读yaml(或yml)时,我想更改autoGrowCollectionLimit
我的项目不是mvc(web)。 只是窗口应用程序,但是当我由于波纹管错误而阅读yaml时,我无法朗读我的应用程序
在我的项目中,没有控制器
像这样的代码无效
<ul class="classs class1 class2">
<?php
$database_service = get_data_of('service', 'id,slug,image,title');
foreach ($database_service as $item) {
?>
<li>
<a class="dropdown-item class lcass2" href="<?php echo $this->config->item('url') . 'service/' . $item->slug; ?>">
<img src="<?php echo $this->config->item('img').$item->image; ?>"
class="clas1 class2" style="max-width:25px;">
<?php echo $item->title; ?>
</a>
</li>
<?php } ?>
</ul>
@InitBinder
protected void initBinder(WebDataBinder binder) {
binder.setAutoGrowCollectionLimit(Integer.MAX_VALUE);
}