向控制器/组件声明一个数组变量[Laravel,October CMS]

时间:2016-06-30 16:41:00

标签: php arrays symfony laravel octobercms

我正在使用10月CMS,并且不知道如何将数组添加到与Laravel控制器类似用途的组件中。基本上它是我的网站搜索功能。问题是,它总是抛出数组转换为字符串ERROR 。如果查看代码,问题出在最后一行$this->$results = $results;,因为$results是一个多维数组。

/**
 * Component setup.
 *
 * @return void
 */
  public function onRun()
  {
      $this->search();
  }

  /**
  * Initiate the search
  *
  *@return void
  */
   public function search()
   {
     // Sets the parameters from the get request to the variables.
      $popularno = Request::get('q');

      // Perform the query using Query Builder
      $estates = DB::table('makler_realestate_objects')
          ->where('slug', 'like', "%${popularno}%")
          ->get();

      // Now build a results array
      $i = 0;
      foreach ($estates as $estate) {
         $i++;

         $results[$i] = [
             'title'     => $estate->prim_id,
             'text'      => $estate->sifra_id,
             'url'       => 'nepremicnina/' . $estate->slug,
         ];
       }

       print_r($results);
       $this->$results = $results; // This is the issue
  }

我想将它声明给组件,以便我可以在{% set results = Search.results %}的页面上调用它,并使用for循环遍历每个数组项。

{% for result in results %}
 <li>{{result.title}} {{result.text}}</li>
{% endfor %}

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您尝试使用额外的$将数组指定为属性名称。拿出来,你应该没事。

$this->results = $results;