Single-page app(SPA)
有哪些值得推荐的一页式网站(Single-page app)?
http://pro.weltrade.com/en/
最近开到一下国外网站,一页到底,感觉很高大上,到底是怎么做出来的呢?技术要点是什么???
类似https://www.skypixel.com/,用angular 是不是更便捷,先研究研究
使用 AngularJS 的路由和模板实现单页应用 (Single Page)
DEMO:http://paul-xiao.github.io/spa
刷新页面还有点问题
angularJs ui.router 刷新页面404 处理方法
AngularJS去掉的URL里的#号
修改:nginx.conf
try_files $uri $uri/ /spa/index.html =404;
server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; try_files $uri $uri/ /spa/index.html =404; }
使用命令行CMD重新加载nginx:
cd nginx
nginx -s reload
搞定:
make a difference