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

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

帶有ajax響應(yīng)的laravel

帶有ajax響應(yīng)的laravel

PHP
Cats萌萌 2022-07-22 19:03:17
我的應(yīng)用程序返回錯(cuò)誤,我需要知道原因。我提出了一個(gè) AJAX 請(qǐng)求,以獲取他在熱賣或特價(jià)商品中選擇的所有產(chǎn)品,并且...如果我刪除此查詢功能,它會(huì)返回?cái)?shù)據(jù)。如何將此請(qǐng)求選中框傳遞給此函數(shù)?函數(shù) App\Http\Controllers\Website\AllProductController::App\Http\Controllers\Website\{closure}() 的參數(shù)太少,1 傳入 /...../vendor/laravel/framework/src/Illuminate /Database/Eloquent/Builder.php 在第 226 行,預(yù)計(jì)正好 2public function ajax_category(Request $request)    {        if(isset($request->price) && isset($request->categories_id))        {        $product_category = $request->categories_id;        // change the value from string to array.        if (isset($request->selectedbox) && $request->selectedbox !='') {            $pairs = $request->selectedbox;            $newArray = explode(",", $pairs);        }        if (!empty($request->categories_id)) {            $max = $request->max;            $min = $request->min;        } else {            $min = product_model::where('pactive', 1)->select('MIN("price")')->first();            $max = product_model::where('pactive', 1)->select('MAx("price")')->first();        }        // change the value from string to array.        if (!empty($request->priceRange)) {            $currentRange = $request->priceRange;            $priceArray = explode(",", $currentRange);            $firstPrice = $priceArray[0];            $secondPrice = $priceArray[1];        } else {            $firstPrice = $min;            $secondPrice = $max;        }        $products = product_model::where('category', $request->categories_id)            ->whereBetween('price', [$firstPrice, $secondPrice]);        if (isset($request->selectedbox) && $request->selectedbox !='') {            $products = $products->where(function ($query,Request $request) {                $pairs = $request->selectedbox;                $newArray = explode(",", $pairs);                $query->whereIn('poffertype',implode(',', $newArray))                    ->orwhereIn('brand', implode(',', $newArray))                    ->orwhereIn('brand_ar', implode(',', $newArray));            });        }
查看完整描述

1 回答

?
青春有我

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

這部分:

$products = $products->where(function ($query,Request $request) {

應(yīng)該

$products = $products->where(function ($query) use ($request) {

use關(guān)鍵字可用于多種用途,其中之一是繼承閉包中的變量。


查看完整回答
反對(duì) 回復(fù) 2022-07-22
  • 1 回答
  • 0 關(guān)注
  • 130 瀏覽

添加回答

舉報(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)