在我的Symfony2项目中,我在事件监听器中使用路由。在我的桌面上一切正常,但不适用于Android设备。如何让我的代码也适用于Android?
我的代码来了:
$('.my-links a').click(function (e) {
e.preventDefault();
var setActive = {
user: $(this).data('user')
};
console.log('on android code gets processed only until here, but not beyond');
$.get(Routing.generate('_my_route', setActive, true)).success(function () {
window.location = '{{ url('_some_other_route') }}';
})
})
答案 0 :(得分:0)
可能是因为资产没有在非开发版本中正确安装吗?
php app/console assets:install --symlink web
答案 1 :(得分:0)
一旦我删除了“true”,一切都开始工作......