Home php教程 php手册 从零开始学YII2框架(六)高级应用程序模板

从零开始学YII2框架(六)高级应用程序模板

Jun 06, 2016 pm 08:19 PM
Advanced applications

这篇文章主要介绍了YII2框架学习笔记之高级应用程序模板,深入浅出从安装,配置到使用方法都做了介绍,希望对大家有所帮助

高级应用程序模板
这个模板用在大型的团队开发项目中,而且后台从前台独立分离出来以便于部署在多个服务器中。由于YIi2.0的一些新的特性,这个程序模板的功能要更深一点。提供了基本的数据库的支持,注册、密码找回等功能。

安装

可以通过Composer来安装
如果没有安装Composer,先安装

curl -s | php

然后用如下命令来获取

php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced /path/to/yii-application

也可以直接下载压缩文件:Yii 2 with advanced application template(beta)
https://github.com/yiisoft/yii2/ ... -app-2.0.0-beta.tgz

开始

安装完成后,需要对其进行初始化操作。

执行init,选择开发环境(dev) php /path/to/yii-application/init 创建新的数据库,设置common/config/main-local.php里的components.db数据库信息 使用控制台命令迁移数据库 yii migrate 设置web服务器的根目录 前台/path/to/yii-application/frontend/web/对应的url为 后台/path/to/yii-application/backend/web/对应的url为

目录结构

在根目录下面有这几个子目录

backend——后台web程序
common——公共的文件
console——控制台程序
environments——环境配置
frontend——前台web程序
根目录下面还有包含一些文件

.gitignore ——git版本控制中忽略的文件和目录,如果你有一些你不想要的文件到你的源代码里面就把它添加到这个文件中。
composer.json——这个下面会描述
init——在Composer里面所描述初始化脚本
init.bat——和上面一样,不过是Windows下面的
LIENSE.md——这个就不说了
README.md——同上
requirements.php——Yii运行环境要求检测文件
yii——控制台程序引导文件
yii.bat——Windows下面的东东

系统定义的路径别名

@yii ——框架的目录。
@app——当前正在运行的应用程序的基本路径。
@common -公共文件目录。
@frontend——前端web应用程序目录。
@backend ——后端web应用程序目录。
@console -控制台目录。
@runtime——当前正在运行的web应用程序的运行时目录
@vendor ——基础框架目录。
@web ——当前正在运行的web应用程序的url
@webroot——当前正在运行的web应用程序的web根目录。

应用程序

这个模板包含三个应用程序,前台、后台和控制台。前台通常来说就是展现给终端用户的,也就是项目本身。后台就是管理员控制面板,包含有分析以及类似的功能等。控制台主要用来做一些定时任务和一些简单的服务器的管理,另外也可以用来部署应用程序、数据库的迁移、资源的管理等。

common 目录提供一些公共的文件,可用于多个应用程序,例如User模型。

前台和后台都是web应用程序,他们都包含一个web目录,也就是web的根目录,在部署服务器的时候就得要指向这个目录。
每个应用程序都有他们自己的命名空间以及对应的别名。同理,common也有自己的命名空间和对应的别名。

配置和开发环境

在平常的开发中,直接设置配置文件会有多个问题

每个团队成员都有自己的配置选项。如果提交这样的配置将影响其他团队成员。
产品数据库密码和API密钥不应该在代码仓库中。
在有多个服务器的情况下:开发、测试、生产,每一个服务器都应该有自己的配置。
每种情况下都定义所有配置选项很重复,并且还要花太多的时间去维持它。

为了解决这些问题,,Yii引入了一个非常简单的环境的概念。每个环境由环境目录下的一组文件的集合来表示。init命令用于不同环境之间切换。它只是复制从环境目录中所有应用程序的根目录。

通常环境包含应用程序引导文件如index.php和以-local.php后缀的配置文件。这些已经添加到.gitignore中,所以不会再添加到源码仓库中。
为了避免重复的配置文件相互覆盖。例如,前台应用程序按照以下顺序来读取配置:

common/config/main.php common/config/main-local.php frontend/config/main.php frontend/config/main-local.php

参数文件按以下顺序读取

common/config/params.php common/config/params-local.php frontend/config/params.php frontend/config/params-local.php

后面读取的文件配置会覆盖前面的配置

整个的流程图形如下

配置 Composer

应用程序安装完成后就可以设置要目录下面的composer.json

{ "name": "yiisoft/yii2-app-advanced", "description": "Yii 2 Advanced Application Template", "keywords": ["yii", "framework", "advanced", "application template"], "homepage": "http://www.yiiframework.com/", "type": "project", "license": "BSD-3-Clause", "support": { "issues": "https://github.com/yiisoft/yii2/issues?state=open", "forum": "http://www.yiiframework.com/forum/", "wiki": "http://www.yiiframework.com/wiki/", "irc": "irc://irc.freenode.net/yii", "source": "https://github.com/yiisoft/yii2" }, "minimum-stability": "dev", "require": { "php": ">=5.4.0", "yiisoft/yii2": "*", "yiisoft/yii2-swiftmailer": "*", "yiisoft/yii2-bootstrap": "*", "yiisoft/yii2-debug": "*", "yiisoft/yii2-gii": "*" }, "scripts": { "post-create-project-cmd": [ "yii\\composer\\Installer::setPermission" ] }, "extra": { "writable": [ "backend/runtime", "backend/web/assets", "console/runtime", "console/migrations", "frontend/runtime", "frontend/web/assets" ] } }

首先,修改一些基本信息。例如名称,描述,关键词,主页等等。
你还可以根据你的需要添加更多的应用程序。这些包都是来自packagist.org,可免费的浏览所有的代码。
修改完composer.json之后 就可以运行

php composer.phar update --prefer-dist

,等下载并安装完成后就可以开始使用了。自动加载的类将会自动处理。

创建从后端到前端的链接

  通常情况下需要从后端应用程序连接到前端应用程序。因为前端应用程序可能包含自己的URL管理规则,所以需要再添加一个不同名字的后台的URL管理规则。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Advanced Usage Guide to Java Regular Expressions Advanced Usage Guide to Java Regular Expressions Jan 09, 2024 am 09:57 AM

Java Regular Expressions Advanced Application Guide Introduction: Regular expressions are a powerful text pattern matching tool. Regular expressions can be used to perform various complex search, replacement and extraction operations in strings. In Java, regular expressions are implemented through classes provided by the java.util.regex package. This article will introduce readers to the advanced applications of Java regular expressions and provide specific code examples. 1. Basic concepts and syntax 1.1 Basic concepts of regular expressions Regular expressions are composed of characters and special words

In-depth study and optimization of Java regular expression syntax In-depth study and optimization of Java regular expression syntax Jan 10, 2024 pm 02:30 PM

Explore the advanced application and optimization methods of Java regular expression syntax Introduction: Regular expression is a powerful pattern matching tool that is widely used in Java development. However, as requirements become more complex and data size increases, efficient matching using regular expressions becomes more important. This article will explore the advanced application and optimization methods of Java regular expression syntax and provide specific code examples. 1. Advanced Application 1.1 Use of Capturing Groups Capturing groups are a powerful feature in regular expressions that can extract and store matches.

Advanced applications and case analysis of PHP arrays Advanced applications and case analysis of PHP arrays Jul 15, 2023 pm 10:22 PM

Preface to Advanced Applications and Case Analysis of PHP Arrays In PHP, arrays are a very important and commonly used data structure. It can store multiple values ​​and quickly access and manipulate data through key-value pairs. However, in addition to basic add, delete, modify and query operations, PHP arrays also have many advanced applications and functions. This article will introduce these applications through case analysis. Multidimensionality and association of arrays In PHP, arrays can be multidimensional, that is, one array can be nested within another array to form a multi-level data structure. Such arrays are often used to store complex

Advanced applications of PHP character functions Advanced applications of PHP character functions Jun 19, 2023 pm 10:53 PM

PHP is a very popular server-side programming language that is widely used in website development. In PHP programming, string manipulation is particularly common. In this article, we will introduce the advanced application of PHP character functions to help you better process and manipulate strings. String interception String interception allows you to extract the required part from a longer string. PHP provides multiple functions to implement string interception. For example, the substr() function can intercept a certain length of characters from a string. Here is a simple

In-depth understanding of advanced application and optimization techniques of Python recursive functions In-depth understanding of advanced application and optimization techniques of Python recursive functions Feb 03, 2024 am 08:37 AM

Master the advanced application and optimization strategies of Python recursive functions Introduction: Recursive functions are a powerful and commonly used programming technique, which can effectively solve problems and simplify code logic. However, performance issues of recursive functions often plague programmers. This article will introduce the advanced application and optimization strategies of recursive functions in Python, and provide specific code examples. 1. Basic concepts of recursive functions A recursive function refers to a function that calls itself in the function definition. It usually consists of two parts: baseline conditions and recursive conditions. The baseline condition is a recursive function

Advanced applications of functional programming in JavaScript Advanced applications of functional programming in JavaScript Jun 15, 2023 pm 11:01 PM

JavaScript is a language that supports functional programming. The core idea of ​​functional programming is to separate data and functions, emphasizing the invariance and lack of side effects of the program. Functional programming has a concise syntax and has great advantages in code organization and testing. This article will introduce some advanced applications of functional programming in JavaScript. Pure function In functional programming, one of the most basic concepts is the purity of the function. A pure function means that a function will get the same result no matter when the same parameters are input.

Advanced applications of regular expressions in PHP Advanced applications of regular expressions in PHP Jun 22, 2023 pm 06:27 PM

In PHP development, regular expressions are very efficient tools that can help developers quickly perform string matching, replacement, extraction and other operations. This article will introduce advanced applications of regular expressions in PHP, including back references, greedy and lazy matching, zero-width assertions, etc. 1. Backreference Backreference is a very important concept in regular expressions. It can use the content of the already matched subexpression to match the following string. In PHP, when using regular expression back references, you need to use the special symbol "" in combination with numbers. example

PHP Array Advanced Application Guide: Practical Tips and Case Analysis PHP Array Advanced Application Guide: Practical Tips and Case Analysis Mar 13, 2024 pm 04:18 PM

PHP array is a data structure often used in development. In practical applications, we often need to perform various operations and processing on arrays. This article will introduce some advanced PHP array application skills and demonstrate its practical application through case analysis. 1. Array merging and splitting Merging arrays Sometimes we need to merge two arrays. PHP provides the array_merge() function to achieve this function: $array1=[1,2,3];$array2=['a',

See all articles