jQuery(前端)怎么直接调用后端的方法

场景:点击保存后数据库修改成功,同时要调用存储过程。

$.ajax({
	url: [[@{/后端路径}]]
	method:'GET/POST',
	syccess: function(response){
		alert("成功");
		console.log(response);
	}
});