我在app.js中的所有路线都工作正常,在刷新页面上。
我必须用这样的特殊参数创建一条路线:
http://localhost:9000/bureaux-a-louer/rhone/lyon/69003/filters?lat=45.7593054&lng=4.841594600000008
从主页到这条路线运行良好,我可以获得所有参数。但当我刷新这个时,我得到了
无法获取 /bureaux-a-louer/rhone/lyon/69003/filters?lat=45.7593054&lng=4.841594600000008
看起来像点参数会破坏它...因为当我在lat / lng参数中放一个逗号时它工作得很好...... 如果有人有想法修复它。
它是1.5.7上的Angular应用程序,其中包含ng route param:
.when('/bureaux-a-louer/:cp/:city/:zipcode/:filters', {
templateUrl: 'views/search/search.html',
controller: 'SearchCtrl',
controllerAs: 'search',
authorized: false,
footer: false,
skipAuthorization: true
})
我使用NodeJS和grunt