EmberJS - 路由动态段



动态段以 route() 方法中的 “:” 开头,后面跟一个标识符。URL 在模型中使用 id 属性进行定义。

语法

Router.map(function() {
   this.route('linkpage', { path: '/linkpage/:identifier' });
});

示例

以下示例展示了如何使用动态段显示数据。在 app/templates/ 下创建的文件。在此,我们创建文件名 blog-post.hbs,代码如下:

<h2>My Profile</h2>
Hello

打开 router.js 文件,定义 URL 映射:

import Ember from 'ember';                   
//Access to Ember.js library as variable Ember
import config from './config/environment';
//It provides access to app's configuration data as variable config 

//The const declares read only variable
const Router = Ember.Router.extend ({
   location: config.locationType,
   rootURL: config.rootURL
});

//Defines URL mappings that takes parameter as an object to create the routes
Router.map(function() {
   this.route('blog-post', { path: '/blog-post/:username'});
});

export default Router;

创建 application.hbs 文件并添加以下代码:

{{#link-to 'blog-post' 'smith'}}View Profile{{/link-to}}
{{outlet}}

要构造 URL,您需要实现 serialize hook,它传递模型并返回带有动态段作为键的对象。

import Ember from 'ember';

export default Ember.Route.extend ({
   model: function(params, transition) {
      return { username: params.username }; 
   },
   
   serialize: function(model) {
      return { username: model.get('username') }; 
   }
});

输出

运行 Ember 服务器,您将获得以下输出:

Ember.js Dynamic Segment

当您点击输出中的链接,您将看到 URL 路由为 nestedroute/fruits,它将显示来自 fruits.hbs 的结果:

Ember.js Dynamic Segment
emberjs_router.htm
广告