Dart Polymer Routing

无人久伴 提交于 2019-12-23 03:41:49

问题


I have a single page app using Dart and Polymer. I'm trying to add a route to another page with route_hierarchical

What I've tried so far was configuring the router like this:

router = new Router()
router.root
  ..addRoute(name: 'games', path: '/games')
  ..addRoute(name: 'login', path: '/login')
  ..addRoute(name: 'home', defaultRoute: true, path: '/');
router.listen();

I've found that I can use

new Router(useFragment: ...);

to enable the hashbangs in the URLs or not. The problem is that when I don't use hashbangs, I can't access a page using the URL directly. (meaning the app routes me when I click on buttons and such). Is there a way of having sharable URLS with no hashbangs? I've seen AngularJs using something like

$locationProvider.html5Mode(true)

to remove the hashbangs and still have sharable URLs... I don't know if I really should bother having URLs without hashbangs though. I've read having them is going to give me trouble with SEO, is that right?

I'm only using Polymer and route_hierarchical right now, and didn't want to go for angular.dart just for routing.


回答1:


You need to use a router on the server side too when you want to use URLs without fragments.

see also

  • httpd.conf and HTML5 pushstate()
  • Angular dart bookmarking views
  • AngularJS routing without the hash '#'


来源:https://stackoverflow.com/questions/27861634/dart-polymer-routing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!