4.3 Routing -- Generated Objects

就像在routing guide中介绍的那样,不管什么时候你在路由器中定义一个新路径,Ember.js就会尝试需找一个对应的routecontrollertemplate,它们的命名都是根据命名约定的。如果没找到任何这些对象的实现,会为你生成合适的对象。

一、Generated Routes

将定你有如下路由:

Router.map(function() {
  this.route(‘posts‘);
});

当你导航到/posts,Ember.js寻找routes:posts。如果没有找到,它会自动生成一个。

二、Generated Controllers

如果导航到路由posts,Ember.js会寻找名为controller:posts的contorller。如果没有找到,会生成一个。

三、Generated Tempaltes

路由需要一个template,如果你不提供一个模板,一个空的模板将会生成。

空模板包含一个{{outlet}},所以嵌套的路由将会被正确渲染,尽管路由没有明确提供一个模板。

{{outlet}}
时间: 2024-11-03 20:45:04

4.3 Routing -- Generated Objects的相关文章

解决mybatis generator警告Cannot obtain primary key information from the database, generated objects may be incomplete

使用 mybatis generator 生成pojo.dao.mapper时 经常出现 Cannot obtain primary key information from the database, generated objects may be incomplete 无法生成主键相关方法 具体详细解决方案有人已经提出了,很长,https://blog.csdn.net/jpf254/article/details/79571396#%E6%9C%80%E7%BB%88%E8%A7%A3%

使用 MyBatis 必看三篇文档导读:MyBatis、MyBatis_Generator 与 MyBatis-Spring

太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. 前一篇<使用 MyBatis 必看两篇文档导读:MyBatis 与 MyBatis-Spring>,纯手工配置的框架环境.目前使用 M

【SAP学习笔记】随意记

*BEx Query Designer 1.只能开发,不能在Excel中分析报表的结果,但便于控制权限,可在portal中展示. 2.Filter面板中的Characteristic Restrictions和Default Values:前者是特性限制,这个区域所做的特性的限制会对整个报表的结果集生效:后者是默认值,也就是报表的初始值,可以在导航时改变.前者限制条件后,一直作用于整个报表,除非重新输入条件,否则在报表结果中无法更改:后者限制条件后,可以重新调整Default Value的值来改

Java &amp; XML Tool Overview

As mentioned in the introduction Sun now provides these tools for XML Processing in Java: StAX Reader / Writer SAX Parser DOM Parser XPath Evaluator XSL Processor JAXB In the following sections I will talk a bit about what these tools are, and what t

从命令行运行 MyBatis Generator

? ? 一.准备 1. 获取最新jar包 2. 获取xml dtd <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may o

The main difference between Java &amp; C++(转载)

转载自:http://stackoverflow.com/questions/9192309/the-main-difference-between-java-c C++ supports pointers whereas Java does not pointers. But when many programmers questioned how you can work without pointers, the promoters began saying "Restricted poi

PA教材提纲 TAW10-2

Unit1 Introduction to the ABAP Dictionary(ABAP字典介绍) 1.1 Describing the ABAP Dictionary(描述ABAP字典) ABAP Dictionary基本功能: Create user-defined types ( data elements, structures, table types ) Create the database objects ( tables, indexes, views ) Find a n

mybatis-generator-maven逆向工程

在idea 中使用 mybatis的  mybatis-generator-maven-plugin  可以根据数据库 生成 dao层,pojo类,Mapper文件. 一:  在  pom.xml  中添加相关插件依赖. 1 <!-- MySQL 连接驱动依赖 --> 2 <dependency> 3 <groupId>mysql</groupId> 4 <artifactId>mysql-connector-java</artifactI

ASP.NET Routing

ASP.NET Routing Other Versions ASP.NET routing enables you to use URLs that do not have to map to specific files in a Web site. Because the URL does not have to map to a file, you can use URLs that are descriptive of the user's action and therefore a