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

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

錯(cuò)誤缺少 [Route: city] [URI: daftar/city/{id}] 所需的參數(shù)

錯(cuò)誤缺少 [Route: city] [URI: daftar/city/{id}] 所需的參數(shù)

PHP
茅侃侃 2022-06-11 09:21:32
我想用ajax向控制器發(fā)送數(shù)據(jù),但是有錯(cuò)誤Missing required parameters for `[Route: city] [URI: daftar / city / {id}].這是我的ajax代碼 $(".province").on("change",function(){      var id = this.value;      console.log(id);      $.ajax({        type: "get",        url: "{{ route('city') }}"+'/'+id  ,        dataType: "json",        success: function(data){            console.log('');        },        });});這是我的路線Route::group(['prefix' => 'vendor'], function () { Route::get('/city/{id}', 'Vendor\VendorController@getCity')->name('city');});
查看完整描述

3 回答

?
慕桂英3389331

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

嘗試這個(gè)。


Route::group(['prefix' => 'vendor','as'=>'vendor.'], function () {

Route::get('/city/{id}',['as' => 'activebranch', 'uses' => 'Vendor\VendorController@getCity']);

});

阿賈克斯。


 $(".province").on("change",function(){

      var id = this.value;

      console.log(id);

      $.ajax({

        type: "get",

        url: "{{ route('vendor.activebranch') }}"+'/'+id  ,

        dataType: "json",

        success: function(data){

            console.log('');

        },

        });

});


查看完整回答
反對(duì) 回復(fù) 2022-06-11
?
蝴蝶刀刀

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

你不能使用沒有參數(shù)的 route('city'),


如果您想要一個(gè)沒有 laravel 助手的簡(jiǎn)單方法,您可以嘗試像這樣更改它:


$(".province").on("change",function(){

      var id = this.value;

      console.log(id);

      $.ajax({

        type: "get",

        url: "daftar/city/" + id  ,

        dataType: "json",

        success: function(data){

            console.log('');

        },

        });

});


查看完整回答
反對(duì) 回復(fù) 2022-06-11
?
DIEA

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

你不能這樣寫。{{ route('city') }}正在回顯具有參數(shù)的路線。但是這里缺少參數(shù)。您稍后將使用 js 添加該參數(shù),但是當(dāng) php 回顯路由時(shí),它將無(wú)法正常工作。你可以這樣做


$(".province").on("change",function(){

    var id = this.value;

    var url = '{{ route("city", ":id") }}';

    url = url.replace(':id', id);

    $.ajax({

        type: "get",

        url: url,

        dataType: "json",

        success: function(data){

            console.log('');

        },

    });

});


查看完整回答
反對(duì) 回復(fù) 2022-06-11
  • 3 回答
  • 0 關(guān)注
  • 129 瀏覽

添加回答

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