2016-09-07 73 views
0

如何配置路由器以處理xhr並將請求直接發送到api。 使用案例:文件下載 我有一個RESTAPI與我正在嘗試使用<a>操作鏈接標記下載文件 - >單擊它可以解析爲一個新的帶有絕對URL的標籤/窗口。 我的webapp在http://localhost:4200proxying requesthttp://localhost:44226 服務當我嘗試打API使用url http://localhost:4200/api/download/files/1 我得到的錯誤下載文件: UnrecognizedURLError:/ API /下載/文件/ 1Emberjs:配置路由器以處理直接'GET'請求

默認路由器

const Router = Ember.Router.extend({ 
    location: config.locationType // auto 
}); 

Router.map(function() { 
    this.route('login'); 
    this.route('logout'); 
}); 
export default Router; 

任何指針如何繼續/改變什麼。

回答

相關問題