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

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

Laravel getNameAttribute 不適用于搜索

Laravel getNameAttribute 不適用于搜索

PHP
明月笑刀無情 2023-03-04 14:50:17
我有Account模型,里面有這個(gè)方法:public function getNameAttribute(){    if(\App::getLocale() == 'en')        return $this->attributes['foreign_name'];    else        return $this->attributes['name'];}在索引頁面中它正在工作。如果 locale 是enname 將是foreign_name,如下圖:但是我有搜索方法,這是代碼:public static function search_and_select($keyword){    $keyword = Helper::clean_keyword($keyword);    $data = Account::where    ('number','like','%'.$keyword.'%')->    orWhere('name','like','%'.$keyword.'%')->    limit(30)->    get(['user_id','number','name']);    if(count($data) == 0)        return Helper::no_result();    return [$data,['number','name']];       }如果我嘗試搜索任何內(nèi)容,我會(huì)收到此錯(cuò)誤:message: "Undefined index: foreign_name"    1: {,…}class: "App\Models\Account"file: "C:\xampp\htdocs\laravel\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php"function: "getNameAttribute"line: 465type: "->"2: {,…}class: "Illuminate\Database\Eloquent\Model"file: "C:\xampp\htdocs\laravel\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php"function: "mutateAttribute"line: 479type: "->"但如果我改變:return $this->attributes['foreign_name'];到return $this->attributes['id']; // or any integer field in the accounts table 它工作沒有問題。在 Laravel 6 中,它和我一樣工作,但現(xiàn)在我得到了這個(gè)錯(cuò)誤。這里有什么幫助嗎?
查看完整描述

1 回答

?
翻閱古今

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

這是因?yàn)槟愕木€

get(['user_id','number','name'])

哪個(gè)要求只獲取這些列。您需要將 foreign_name 添加到此數(shù)組并使其成為

get(['user_id','number','name',?'foreign_name'])

根據(jù) Laravel參考,get 函數(shù)接受列列表。

同樣適用于其他功能


查看完整回答
反對(duì) 回復(fù) 2023-03-04
  • 1 回答
  • 0 關(guān)注
  • 238 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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