第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Laravel Elasticsearch babenkoivan

Laravel Elasticsearch babenkoivan

PHP
慕哥9229398 2023-10-22 20:34:00
我希望在具有模型關(guān)系的項(xiàng)目上使用彈性搜索。現(xiàn)在彈性搜索正在工作,我遵循了這個(gè)文檔,他解釋了如何從這個(gè)包開(kāi)始:Elasticsearch/elasticsearchBabenkoivan/Elastic-migrationsBabenkoivan/彈性適配器Babenkoivan/elastic-scout-driver問(wèn)題是我需要能夠按關(guān)系搜索。這是我的復(fù)合彈性遷移:Index::create('composant', function(Mapping $mapping, Settings $settings){        $mapping->text('reference');        $mapping->keyword('designation');        $mapping->join('categorie');        $settings->analysis([            'analyzer' => [                'reference' => [                    'type' => 'custom',                    'tokenizer' => 'whitespace'                    ],                'designation' => [                    'type' => 'custom',                    'tokenizer' => 'whitespace'                    ]            ]        ]);    });這是我的分類(lèi)彈性遷移:Index::create('categorie', function(Mapping $mapping, Settings $settings){        $mapping->keyword('nom');        $settings->analysis([            'analyzer' => [                'nom' => [                    'type' => 'custom',                    'tokenizer' => 'whitespace'                    ]            ]        ]);    });我的作曲家模型:public function categorie(){    return $this->belongsTo('App\Model\Categorie');}public function toSearchableArray(){    return [        'reference' => $this->reference,        'designation' => $this->designation,        'categorie' => $this->categorie(),    ];}和我的分類(lèi)模型:public function toSearchableArray(){    return [        'nom' => $this->nom,    ];}因此,如果您查看組合器關(guān)系,您可以看到聯(lián)接映射返回分類(lèi)關(guān)系。我現(xiàn)在不知道我做得對(duì),但我知道的是 elasticsearch 在我正在尋找的對(duì)象中沒(méi)有任何關(guān)系。而且我沒(méi)有找到任何有關(guān)如何使用包的連接映射方法的文檔。
查看完整描述

3 回答

?
湖上湖

TA貢獻(xiàn)2003條經(jīng)驗(yàn) 獲得超2個(gè)贊

好的,我已經(jīng)找到了解決方案,問(wèn)題出在遷移中,您必須使用對(duì)象才能索引 belongToMany 這樣的關(guān)系


Index::create('stages', function (Mapping $mapping, Settings $settings) {

            $mapping->text('intitule_stage');

            $mapping->text('objectifs');

            $mapping->text('contenu');

            $mapping->object('mots_cles');

        });

在您的模型中:


public function toSearchableArray()

    {

        return [

            'intitule_stage' => $this->intitule_stage,

            'objectifs' => $this->objectifs,

            'contenu' => $this->contenu,

            'n_stage' => $this->n_stage,

            'mots_cles' => $this->motsCles()->get(),

        ];

    }

結(jié)果現(xiàn)在正如預(yù)期的那樣

https://img1.sycdn.imooc.com/6535186d0001afb506550226.jpg

查看完整回答
反對(duì) 回復(fù) 2023-10-22
?
Cats萌萌

TA貢獻(xiàn)1805條經(jīng)驗(yàn) 獲得超9個(gè)贊

與 belontoMany 關(guān)系存在相同的問(wèn)題,并且為了將關(guān)系作為嵌套對(duì)象,我做了同樣的事情,但是當(dāng)我嘗試填充我的索引時(shí),字段“mots_cles”保持為空,我不明白為什么。


這是遷移:


Index::create('stages', function (Mapping $mapping, Settings $settings) {

            $mapping->text('intitule_stage');

            $mapping->text('objectifs');

            $mapping->text('contenu');

            $mapping->nested('motsCles', [

                'properties' => [

                    'mot_cle' => [

                        'type' => 'keyword',

                    ],

                ],

            ]);

        });

模型:


public function toSearchableArray()

    {

        return [

            'intitule_stage' => $this->intitule_stage,

            'objectifs' => $this->objectifs,

            'contenu' => $this->contenu,

            'n_stage' => $this->n_stage,

            'mots_cles' => $this->motsCles(),

        ];

    }


public function motsCles()

    {

        return $this->belongsToMany(MotsCle::class);

    }


查看完整回答
反對(duì) 回復(fù) 2023-10-22
?
DIEA

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超3個(gè)贊

如果你想得到分類(lèi)的“nom”,把它寫(xiě)在 composant Model 中

'categorie' => $this->categorie->nom ?? null,

$this->categorie() 返回關(guān)系,而不是對(duì)象。


查看完整回答
反對(duì) 回復(fù) 2023-10-22
  • 3 回答
  • 0 關(guān)注
  • 184 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)