我使用Laravel Scout和TNTSearch在我的某个模型(食谱)上使用了搜索功能:teamtnt/laravel-scout-tntsearch-driver。
我想将相同的搜索功能添加到不同的模型(成分)。我正在尝试使用toSearchableArray().
将搜索结果作为数组返回。为了测试,我在模型中执行了以下操作。
namespace App;
use Illuminate\Database\Eloquent\Model;
use Laravel\Scout\Searchable;
class Ingredient extends Model
{
use Searchable;
public $asYouType = true;
public function recipes()
{
return $this->belongsToMany('App\Recipe');
}
public function toSearchableArray()
{
$array = $this->toArray();
return $array;
}
}
在我的控制器中,我正在尝试这个:
public function search(Request $request)
{
$results = Ingredient::search($request->q)->get()->toArray();
return $results;
}
但是,我仍然将我的数据作为集合返回。我正在为我的其他模型(Recipe)使用类似的设置,它会按预期返回一系列结果。
namespace App;
use Illuminate\Database\Eloquent\Model;
use Laravel\Scout\Searchable;
class Recipe extends Model
{
use Searchable;
public $asYouType = true;
public function ingredients()
{
return $this->belongsToMany('App\Ingredient');
}
public function toSearchableArray()
{
$array = $this->toArray();
return $array;
}
}
然后,再次,在模型中:
public function search(Request $request)
{
$resultsrecipes = Recipe::search($request->q)->get()->load('tags', 'ingredients', 'images');
return $resultsrecipes;
}
这适用于Recipe模型,即使没有load()
功能也是如此。我假设我的Ingredient模型中的toSearchableArray()
函数没有被调用。我的问题是如何验证和解决这个问题?
我尝试使用php artisan queue:restart,
尝试刷新并添加记录来重置队列工作程序,但似乎没有任何工作。
答案 0 :(得分:3)
原来php artisan scout:flush doesn't work with TNTSearch,所以我不得不手动删除索引文件并运行php artisan scout:import来刷新新模型的Searchable设置。