本篇,你可以学到Ember页面的创建,并且在不同的页面之间跳转。新建两个页面,一个是创建about页面,一个是创建页面。
看完本篇你将学到如下知识点:
定义路由
在前一篇,我们定义了一个index.hbs首页,接着继续在下面创建新的页面。
首先通过Ember CLI创建一个路由,
ember g route about
本机创建日志:
ubuntuvim at ubuntuvim-mbp.local in [~/code/super-rentals] on git:master ✗ 9b5a1ac "Initial Commit from Ember CLI v3.18.0"
23:22:20 › ember g route about
installing route
create app/routes/about.js
create app/templates/about.hbs
updating router
add route about
installing route-test
create tests/unit/routes/about-test.js
题外话:
at -mbp.local in [~/code/super-] on git: ✗ ” from Ember CLI v3.18.0″
23:22:20 ›
这一段是我本机命令行自动前缀,如果你的命令行安装过zsh这个工具,就会很熟悉,zsh是一个非常强大而且漂亮的命令行工具。
打开.js,可以看到自动创建了一个路由this.route('about');
使用路由模板
修改about路由模板文件app//about.hbs,在文件内添加一下HTML内容。
{{!-- app/templates/about.hbs --}}
About Super Rentals
The Super Rentals website is a delightful project created to explore Ember.
By building a property rental site, we can simultaneously imagine traveling
AND building Ember applications.
浏览器访问验证::4200/about。可以看到about页面的内容
使用同样的方式创建路由。
ubuntuvim at ubuntuvim-mbp.local in [~/code/super-rentals] on git:master ✗ 9b5a1ac "Initial Commit from Ember CLI v3.18.0"
23:22:37 › ember g route contact
installing route
create app/routes/contact.js
create app/templates/contact.hbs
updating router
add route contact
installing route-test
create tests/unit/routes/contact-test.js
在.hbs添加一些HTML内容。
{{!-- app/templates/contact.hbs --}}
Contact Us
Super Rentals Representatives would love to help you
choose a destination or answer any questions you may have.
Super Rentals HQ
1212 Test Address Avenue
Testington, OR 97233
+1 (503) 555-1212
superrentalsrep@emberjs.com
浏览器访问验证::4200/。可以看到页面的内容
.png
自定义路由URL
前面已经定义了两个页面,一个是about一个是。默认情况下访问的路径都是和路由同名的,另外Ember提供了非常灵活的扩展,你可以自定义的路由的访问路径,比如下面的代码,把路由的访问路径改为-in-touch,手动修改.js文件。
Router.map(function() {
this.route('about');
this.route('contact', { path: '/getting-in-touch' });
});
注意看第三行,使用path属性指定这个路由的访问路径为-in-touch。
现在你在访问:4200/就会发现报错了,提示找不到这个路由了。
.png
再访问:4200/-in-touch。可以看到页面的内容就是之前的内容。
.png
使用组件在不同模板之间跳转
是Ember提供好的组件,用于在不同模板之间跳转,其作用类似于HTML标签中的标签。
为何不直接用标签而是要自定义一个跳转的组件呢??因为使用普通的标签,当你点击链接的时候会发送浏览器的刷新,但是Ember是单页应用不需要刷新整个页面,只要是实现页面的跳转即可(所谓的跳转其实就是实现不同的路由之间的切换,并且不会刷新页面)。
继续改造前面的创建的index,about和。分别在这两个模板页面中添加一个跳转的链接。
{{!-- index.hbs是 "/" 这个路径默认的页面。 --}}
Welcome to Super Rentals!
We hope you find exactly what you're looking for in a place to stay.
{{!-- 使用LinkTo组件添加一个跳转按钮,并且指定调整到的路由是about,也就是说当用户点击这按钮的时候会跳转到about这个子页面上 --}}
About Us
About Us With A Tag
.png
点击“About Us”这个按钮,然后看浏览器的地址栏,可以看到自动转到about这个路由下,并且页面不会刷新。为了验证前面所说的效果,我在About Us后面添加了一个标签按钮,当你点击这个链接的时候会看到浏览器自动刷新了,并且也跳转到about页面上。
.png
继续改造about和,分别添加跳转按钮。
{{!-- app/templates/about.hbs --}}
About Super Rentals
The Super Rentals website is a delightful project created to explore Ember.
By building a property rental site, we can simultaneously imagine traveling
AND building Ember applications.
Contact Us
{{!-- 增加一个跳转回到首页的链接 --}}
Index
{{!-- app/templates/contact.hbs --}}
Contact Us
Super Rentals Representatives would love to help you
choose a destination or answer any questions you may have.
Super Rentals HQ
1212 Test Address Avenue
Testington, OR 97233
+1 (503) 555-1212
superrentalsrep@emberjs.com
About
{{!-- 增加一个跳转回到首页的链接 --}}
Index
在about和两个页面添加了两个跳转按钮,一个是about和页面的相互跳转,一个是跳转回首页的按钮。
.png
.png
通过前面的这三个页面,相信你很容易就可以掌握组件的使用。其中@route属性指定的是你定义的路由名字,这个路由的名字要和.js里面的定义的完全一致,否则会找不到。另外需要注意的是@route属性的值一定是路由的名字而不是URL的名字,比如路由,这个路由的路由名是而不是访问的-in-touch。
另外在组件上可以使用普通的HTML属性,比如上面使用的class属性,这个class属性就是普通HTML属性,用于指定CSS样式的。在Ember应用中,通过@符号区别是普通的HTML属性还是Ember提供的属性,比如上面使用的@route就是Ember提供的属性。
在底层,组件会为我们生成一个常规的标签,并带有针对特定路由的href。通过Ember生成的这个标签对于用户来说非常友好,无需页面刷新就可以实现跳转。 简单讲,当单击这些特殊链接之一时,Ember将拦截该单击,呈现新页面的内容,并更新URL(所有这些操作均在本地执行,而无需等待服务器),从而避免刷新整个页面。
———END———
限 时 特 惠: 本站每日持续更新海量各大内部创业教程,永久会员只需109元,全站资源免费下载 点击查看详情
站 长 微 信: nanadh666