GETJson将两个参数传递给服务器

时间:2018-08-21 22:13:52

标签: javascript jquery

为什么在此代码中我仅将“ term”传递给服务器

$.getJSON( "{{route('search.index')}}", {
                term: request.term,
                type: $('#category_input').attr('data-type')
        }, response );

谢谢

1 个答案:

答案 0 :(得分:1)

$.getJSON( "{{route('search.index')}}", {
                term: request.term,
                type: $('#category_input').data('type')
        }, response );

尝试上面的鳕鱼。可能是因为您没有使用数据功能

访问它