4

リレーショナル モデルの列を介してメイン モデルのデータセット全体を並べ替えようとしています。Laravel ORM 5.2.43Jensenggers MongoDb 3.1を使用しています

ここに私が持っているモデルがあります

UserEventActivity.php - Mongo モデル

use Jenssegers\Mongodb\Eloquent\Model as Eloquent;

class UserEventActivity extends Eloquent 
{

    protected $collection = 'user_event_activity';
    protected $connection = 'mongodb';

    public function handset() {

        return $this->hasOne('HandsetDetails', '_id', 'handset_id');
    }

    public function storeDetail() {

        return $this->hasOne('StoreDetails', 'st_id', 'store_id');
    }

}

HandsetDetails.php - Mongo モデル

use Jenssegers\Mongodb\Eloquent\Model as Eloquent;

class HandsetDetails extends Eloquent 
{

    var $collection = 'user_handset_details';
    var $connection = 'mongodb';

}

StoreDetails.php - MySql モデル

use Jenssegers\Mongodb\Eloquent\HybridRelations;
use Illuminate\Database\Eloquent\Model as Eloquent;

class StoreDetails extends Eloquent 
{

    use HybridRelations;

    protected $connection = 'mysql';
    protected $table = 'icn_store';

}

PHPスクリプト

$activity = UserEventActivity::join('handset ', 'handset._id', '=', 'handset_id')
    ->join('storeDetail', 'store_id', '=', 'storeDetail.st_id')
    ->orderBy('handset.handset_make', 'desc')
    ->select('storeDetail.*', 'handset.*')
    ->get()
    ->toArray();

このデータは、ハンドセット関係のフィールドにUserEventActivity基づいて保存されません。handset_make

期待される結果を達成するために私を助けてください

4

1 に答える 1

1

私の知る限り、MongoDB はこのような結合をサポートしていません。

それを回避する方法は、熱心な読み込みを使用することです。

したがって、UserEventActivityモデルは次のようになります。

use Jenssegers\Mongodb\Eloquent\Model as Eloquent;

class UserEventActivity extends Eloquent 
{

    protected $collection = 'user_event_activity';
    protected $connection = 'mongodb';

    public function handset() {

        return $this->hasOne('HandsetDetails', '_id', 'handset_id');
    }

    public function storeDetail() {

        return $this->hasOne('StoreDetails', 'st_id', 'store_id');
    }

    public function getHandsetMakeAttribute()
    {
        return $this->handset->handset_make;
    }


}

getHandsetMakeAttribute()アクセサに注意してください。次に、これで電話をかけることができる場合があります。

$activity = UserEventActivity::with('storeDetail')
    ->with('handset')
    ->get()
    ->sortByDesc('handset_make')
    ->toArray();

まったくテストされていませんが、試してみる価値があります。

于 2016-12-29T09:59:49.577 に答える