在 Laravel AJAX 请求中找不到 404

Getting 404 Not Found in Laravel AJAX Request

在我的 Laravel 项目中,我想使用 Ajax 将数据从 blade 传递到我的控制器。

但是我收到错误

404 | Not Found

ajax

var pi_id = $(this).attr('href');    
$.ajax({
        url: "{{ url('purchase-invoice-detail') }}",
        type: "get",
        data: {
            'id': pi_id
        },
        success: function(response){ // What to do if we succeed                
                alert('ok'); 
        },
        error: function(response){
            alert('Error'+response);
        }
    });

路线

Route::get('purchase-invoice-detail/{id}', 'PurchaseController@purchase_invoice_detail')->middleware('auth');

控制器

public function purchase_invoice_detail($id)
{
    return 1;
}

找不到问题。

有人帮忙吗?

请试试这个代码

"{{ url('purchase-invoice-detail') }}"  + '/' + pi_id