我需要在laravel中執行AJAX請求,並且url是URL :: Action方法和Javascript整數變量之間的串聯。URL :: action()和Javascript之間的連接int變量
視圖中的javascript函數是
function detailMaintenanceVehicle(vehicleId,placa){
var url = "{{ URL::action('[email protected]',["+vehicleId+"]) }}";
console.log(vehicleId); // This prints integer variables 1,2,3..
console.log(url); // This prints a string http://localhost/.../detailMaintenance/+vehicleId+
$.ajax({
url: url,
dataType: 'json',
type: 'GET',
success: function(data) {
...
},
error: function(jqXHR, textStatus, errorThrown) {
...
}
});
}
級聯中使用變量名,它必須使用的值。
//給出:http://localhost/.../detailMaintenance/+vehicleId+
//我需要:http://localhost/.../detailMaintenance/3(例如)
請幫助我。提前致謝!。
它的工作,並在短短一行VAR URL =( 「{{...}}」)取代(..); –