ember baseUrl重复

时间:2016-04-14 08:01:16

标签: spring ember.js

我有一个基于Spring的后端,以及一个ember单页应用,其服务大致如下所述:

Ember.js, EmberCLI - removing the hash ( # ) from the URL

调度servlet映射为从/foo发送。

生产env配置如下:

if (environment === 'production') {
  ENV.baseUrl = '/foo/';
  ENV.locationType = 'auto';
}

虽然调度有效,但网址是重复的。当我尝试访问/foo/account时,我以/foo/foo/account结尾。

1 个答案:

答案 0 :(得分:0)

我们的router.js有以下条目导致问题:

const Router = Ember.Router.extend({
  rootURL: config.baseURL,
  ...
)}

删除它可以解决此问题。