我通过 $.ajax 从数据库中获取数据。但是我怎样才能创建一个链接?
这是我的 ajax 调用,结果有效:
var $resultDepartment = $( '#resultDepartment' );
$.ajax({
type: "post",
url: url2,
data: "locationid=" + locationid,
dataType: "json",
success: function (resp) {
for (var i = 0; i < resp.length; i++) {
var $link = "{{ path('_niederlassung', {filiale: resp[i].bezeichnung}) }}";
console.log($link);
$resultDepartment.html("Your Department:<br><br>" + resp[i].bezeichnung) + "<br><br><a href='" + $link + "'>weiter zur Filiale</a>";
}
}
});
当我将 {{ path('_niederlassung', {filiale: 'exampledepartment'}) }} 放入树枝时,它会变得完美并且工作完美。
下面我给大家介绍一下路线:
_niederlassung:
path: /niederlassung/{filiale}
defaults: { _controller: MbsNiederlassungBundle:Default:index, filiale: "all" }