当前位置:  开发笔记 > 编程语言 > 正文

laravel-search初试遇见的问题,求助!

按laravelacademy.orgpost3781.html安装了Elasticsearch(启动后通过curl-XGETlocalhost:9200测试正常返回信息)及mmanoslaravel-search依赖也相应按说明做了配置,最后写了调用程序,程

http://laravelacademy.org/post/3781.html 安装了Elasticsearch(启动后通过curl -X GET http://localhost:9200 测试正常返回信息) 及mmanos/laravel-search依赖 也相应按说明做了配置,最后写了调用程序,程序如下

search = $search;
    }
    public function insert(){
        $this->search->insert(
            "post-1",
            array(
                'title' => 'My title',
                'content' => 'The quick brown fox...',
                'status' => 'published',
            ),
            array(
                'created_at' => time(),
                'creator_id' => 5,
            )
        );

    }
    public function res(){
        $results = Search::search('content', 'fox')->get();
        var_dump($results);
    }
}

访问结果如下错误,

小弟水平低,请指点,谢谢!!!

回复内容:

http://laravelacademy.org/post/3781.html 安装了Elasticsearch(启动后通过curl -X GET http://localhost:9200 测试正常返回信息) 及mmanos/laravel-search依赖 也相应按说明做了配置,最后写了调用程序,程序如下

search = $search;
    }
    public function insert(){
        $this->search->insert(
            "post-1",
            array(
                'title' => 'My title',
                'content' => 'The quick brown fox...',
                'status' => 'published',
            ),
            array(
                'created_at' => time(),
                'creator_id' => 5,
            )
        );

    }
    public function res(){
        $results = Search::search('content', 'fox')->get();
        var_dump($results);
    }
}

访问结果如下错误,

小弟水平低,请指点,谢谢!!!

你看看下面的评论,目前第一条就是了。
学院君回复是:

有安装elasticsearch依赖组件吗

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有