Files
yii2/docs/guide-zh-CN/README.md
东方孤思子(Paris·QianSen) 4db4c02894 update README [skip ci]
2014-07-15 19:04:47 +08:00

189 lines
6.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Yii 2.0 权威指南
===============================
本教程的发布遵循 [Yii 文档使用许可](http://www.yiiframework.com/doc/terms/).
版权所有
2014 (c) Yii Software LLC.
介绍
-----
* **已定稿** [关于 Yii](intro-yii.md)
* **已定稿** [从 Yii 1.1 升级](intro-upgrade-from-v1.md)
入门
-----
* **已定稿** [安装 Yii](start-installation.md)
* **已定稿** [运行应用](start-workflow.md)
* **已定稿** [第一次问候](start-hello.md)
* **已定稿** [使用 Forms](start-forms.md)
* **已定稿** [玩转 Databases](start-databases.md)
* **已定稿** [用 Gii 生成代码](start-gii.md)
* **已定稿** [更上一层楼](start-looking-ahead.md)
应用结构
--------
* **已定稿** [结构总览](structure-overview.md)
* **已定稿** [入口脚本](structure-entry-scripts.md)
* **已定稿** [应用](structure-applications.md)
* **已定稿** [应用组件](structure-application-components.md)
* **已定稿** [控制器Controller](structure-controllers.md)
* **已定稿** [视图View](structure-views.md)
* **已定稿** [模型Model](structure-models.md)
* **已定稿** [过滤器](structure-filters.md)
* **已定稿** [小部件Widget](structure-widgets.md)
* **已定稿** [模块Module](structure-modules.md)
* **编撰中** [前端资源Asset](structure-assets.md)
* **已定稿** [扩展extensions](structure-extensions.md)
请求处理
--------
* **待定中** [引导Bootstrapping](runtime-bootstrapping.md)
* **待定中** [路由Routing](runtime-routing.md)
* **待定中** [请求Request](runtime-requests.md)
* **待定中** [响应Response](runtime-responses.md)
* **待定中** [Sessions会话和 Cookies](runtime-sessions-cookies.md)
* **已定稿** [URL 解析和生成](runtime-url-handling.md)
* **编撰中** [错误处理](runtime-handling-errors.md)
* **编撰中** [日志](runtime-logging.md)
关键概念
--------
* **已定稿** [组件Component](concept-components.md)
* **已定稿** [属性Property](concept-properties.md)
* **已定稿** [事件Event](concept-events.md)
* **已定稿** [行为Behavior](concept-behaviors.md)
* **已定稿** [配置Configurations](concept-configurations.md)
* **已定稿** [类自动加载Autoloading](concept-autoloading.md)
* **已定稿** [别名Alias](concept-alias.md)
* **已定稿** [服务定位器Service Locator](concept-service-locator.md)
* **已定稿** [依赖注入容器DI Container](concept-di-container.md)
配合数据库工作
-------------
* **编撰中** [数据访问对象DAO](db-dao.md) - 数据库连接、基本查询、事务和模式操作
* **编撰中** [查询生成器Query Builder](db-query-builder.md) - 使用简单抽象层查询数据库
* **编撰中** [活动记录Active Record](db-active-record.md) - 活动记录对象关系映射ORM检索和操作记录、定义关联关系
* **编撰中** [数据库迁移Migration](db-migrations.md) - 在团体开发中对你的数据库使用版本控制
* **待定中** [Sphinx](db-sphinx.md)
* **待定中** [Redis](db-redis.md)
* **待定中** [MongoDB](db-mongodb.md)
* **待定中** [ElasticSearch](db-elastic-search.md)
接收用户数据
-----------
* **编撰中** [创建表单](input-forms.md)
* **已定稿** [输入验证](input-validation.md)
* **编撰中** [文件上传](input-file-uploading.md)
* **待定中** [多模型同时输入](input-multiple-models.md)
显示数据
--------
* **待定中** [格式化输出数据](output-formatting.md)
* **待定中** [分页Pagination](output-pagination.md)
* **待定中** [排序Sorting](output-sorting.md)
* **编撰中** [数据提供器](output-data-providers.md)
* **编撰中** [数据小部件](output-data-widgets.md)
* **编撰中** [主题](output-theming.md)
安全
-----
* **编撰中** [认证Authentication](security-authentication.md)
* **编撰中** [授权Authorization](security-authorization.md)
* **编撰中** [处理密码](security-passwords.md)
* **待定中** [客户端认证](security-auth-clients.md)
* **待定中** [安全领域的最佳实践](security-best-practices.md)
缓存
-----
* **已定稿** [概述](caching-overview.md)
* **已定稿** [数据缓存](caching-data.md)
* **已定稿** [片段缓存](caching-fragment.md)
* **已定稿** [分页缓存](caching-page.md)
* **已定稿** [HTTP 缓存](caching-http.md)
RESTful Web 服务
----------------
* **已定稿** [快速入门](rest-quick-start.md)
* **已定稿** [资源](rest-resources.md)
* **已定稿** [路由](rest-routing.md)
* **已定稿** [格式化响应](rest-response-formatting.md)
* **已定稿** [授权验证](rest-authentication.md)
* **已定稿** [速率限制](rest-rate-limiting.md)
* **已定稿** [版本化](rest-versioning.md)
* **已定稿** [错误处理](rest-error-handling.md)
* **已定稿** [测试](rest-testing.md)
开发工具
--------
* **编撰中** [调试工具栏和调试器](tool-debugger.md)
* **编撰中** [使用 Gii 生成代码](tool-gii.md)
* **待定中** [生成 API 文档](tool-api-doc.md)
测试
-----
* **编撰中** [概述](test-overview.md)
* **待定中** [单元测试](test-unit.md)
* **待定中** [功能测试](test-functional.md)
* **待定中** [验收测试](test-acceptance.md)
* **编撰中** [测试夹具](test-fixtures.md)
高级专题
--------
* **编撰中** [高级应用模版](tutorial-advanced-app.md)
* **编撰中** [从头构建自定义模版](tutorial-start-from-scratch.md)
* **编撰中** [控制台命令](tutorial-console.md)
* **已定稿** [核心验证器](tutorial-core-validators.md)
* **编撰中** [国际化](tutorial-i18n.md)
* **编撰中** [收发邮件](tutorial-mailing.md)
* **编撰中** [性能优化](tutorial-performance-tuning.md)
* **待定中** [共享主机环境](tutorial-shared-hosting.md)
* **编撰中** [模板引擎](tutorial-template-engines.md)
* **已定稿** [集成第三方代码](tutorial-yii-integration.md)
小部件
------
* 表格视图GridView链接到 demo 页
* 列表视图ListView链接到 demo 页
* 详情视图DetailView链接到 demo 页
* 活动表单ActiveForm链接到 demo 页
* Pjax链接到 demo 页
* 菜单Menu链接到 demo 页
* LinkPager链接到 demo 页
* LinkSorter链接到 demo 页
* **已完成** [Bootstrap 小部件](widget-bootstrap.md)
* **已完成** [Jquery UI 小部件](widget-jui.md)
助手类
------
* **编撰中** [助手一览](helper-overview.md)
* **待定中** [ArrayHelper](helper-array.md)
* **待定中** [Html](helper-html.md)
* **待定中** [Url](helper-url.md)
* **待定中** [security](helper-security.md)
不在目录内的文件
----------------
* [glossary](glossary.md)