- 浏览: 4305 次
- 性别:
- 来自: 上海
最新评论
文章列表
scooter提供五种路由类型:
命名路由
routes.name.login=url:/login; controller:home; action:login
它需要一个唯一的名字,一个url,一个控制器,一个action。
根路由
# 定义一个根路由
routes.root=url:index; controller:blog; action:main
#
# 用一个已存在的名字为“index”的命名路由定义一个根路由
routes.root:index
规则路由
routes.regular.showpost=u ...
Active Record活跃记录
Active Record Pattern 活跃记录模式
Active Record is a design pattern first proposed by Martin Fowler.
According to Martin Fowler, an active record object represents a row in a
database table. Contrary to J2EE's Value Object pattern which is an object
having only data fields ...
1.概论
REBOL提供如下几种函数:
NATIVE、FUNCTION、MEZZANINE、OPERATOR、ROUTINE
2.求值函数
2.1参数
friend: luke@rebol.com
message: "message in a bottle"
send friend message
send luke@rebol.com "message in a bottle"
send friend
** Script Error: send is missing its message argument.
** ...