在带有ember-cli的Rails应用程序中,登录后我将重定向到安装了Ember应用程序的/app
。不幸的是,ember app在getHistoryPath
::
_emberMetalDebug.assert('Path ' + path + ' does not start with the provided rootURL ' + rootURL, rootURLIndex === 0);
将重定向网址更改为/app/
有效,但我想知道是否有一个简单的解决方法,使其接受/app
作为根路径的有效网址。用户很可能在手动/应用程序中键入,结果是非功能性应用程序。将rootUrl更改为/app
会在detect()
中引发不同的断言:
_emberMetalDebug.assert('rootURL must end with a trailing forward slash e.g. "/app/"', rootURL.charAt(rootURL.length - 1) === '/');