6.4 小结
最后更新于:2022-04-01 22:29:07
# 6.4 小结
本章从零开始建立了一个可以正常使用的用户模型,创建了 `name`、`email` 和 `password` 属性,还为这些属性制定了重要的取值约束规则。而且,已经可以使用密码对用户进行认证了。整个用户模型只用了十行代码。
在接下来的[第 7 章](chapter7.html#sign-up),我们会创建一个注册表单,用来新建用户,还会创建一个页面,显示用户的信息。[第 8 章](chapter8.html#log-in-log-out)会使用 [6.3 节](#adding-a-secure-password)实现的认证机制让用户登录网站。
如果使用 Git,而且一直都没提交,现在是提交的好时机:
```
$ bundle exec rake test
$ git add -A
$ git commit -m "Make a basic User model (including secure passwords)"
```
然后合并到主分支,再推送到远程仓库中:
```
$ git checkout master
$ git merge modeling-users
$ git push
```
为了让用户模型在生产环境中能正常使用,我们要在 Heroku 中执行迁移。这个操作可以通过 `heroku run` 命令完成:
```
$ bundle exec rake test
$ git push heroku
$ heroku run rake db:migrate
```
我们可以在生产环境的控制台中执行以下代码确认一下:
```
$ heroku run console --sandbox
>> User.create(name: "Michael Hartl", email: "michael@example.com",
?> password: "foobar", password_confirmation: "foobar")
=> #
```
## 6.4.1 读完本章学到了什么
* 使用迁移可以修改应用的数据模型;
* Active Record 提供了很多创建和处理数据模型的方法;
* 使用 Active Record 验证可以在模型的数据上添加约束条件;
* 常见的验证有存在性、长度和格式;
* 正则表达式晦涩难懂,但功能强大;
* 数据库索引可以提升查询效率,而且能在数据库层实现唯一性约束;
* 可以使用内置的 `has_secure_password` 方法在模型中添加一个安全的密码。
';