0

我正在尝试构建一个小部件设计系统,用户可以在其中提交小部件的标题和 html。现在,当我尝试在视图中查询小部件模型并将数据传递给@foreach循环时,我收到错误,因为@foreach无法遍历返回的查询集。Widget::all()如何在我的网页上显示来自 Widget 模型的所有数据?

顺便说一句,我的 Widget 模型只有两个字段(即标题和 html)。

编辑:以下是var_dump我这样做时得到的回报Widget::all()

array(2) { [0]=> object(Widget)#42 (5) { ["attributes"]=> array(3) { ["id"]=> string(1) "1" ["title"]=> string(24) "Join Demo classes today!" ["html"]=> string(47) "
This is just the great demo of widgets.
" } ["original"]=> array(3) { ["id"]=> string(1) "1" ["title"]=> string(24) "Join Demo classes today!" ["html"]=> string(47) "
This is just the great demo of widgets.
" } ["relationships"]=> array(0) { } ["exists"]=> bool(true) ["includes"]=> array(0) { } } [1]=> object(Widget)#45 (5) { ["attributes"]=> array(3) { ["id"]=> string(1) "2" ["title"]=> string(12) "About Google" ["html"]=> string(66) "Google is the best site in the world." } ["original"]=> array(3) { ["id"]=> string(1) "2" ["title"]=> string(12) "About Google" ["html"]=> string(66) "Google is the best site in the world." } ["relationships"]=> array(0) { } ["exists"]=> bool(true) ["includes"]=> array(0) { } } }
4

1 回答 1

2

没有任何代码很难解决您的问题。这是我要做的:

控制器:

$widgets = Widget::all();
View::make('html.widgets')->with('widgets', $widgets);

视图(刀片):

@foreach($widgets as $widget)
    {{ $widget->title }}
    {{ $widget->html }}
@endforeach

在您提到的问题中,查询视图中的小部件。由于这显然违反了 MVC 原则,但展示了 laravel 的灵活性,我还将给你一个片段,如何在没有控制器的情况下做到这一点。我建议这样做:

@foreach(Widget::all() as $widget)
    {{ $widget->title }}
    {{ $widget->html }}
@endforeach
于 2013-04-29T14:28:49.503 回答