Heim >Backend-Entwicklung >PHP-Tutorial >thinkphp中的logic和service层是干什么用的?

thinkphp中的logic和service层是干什么用的?

PHPz
PHPzOriginal
2016-06-06 16:43:274641Durchsuche

thinkphp中的logic和service层是干什么用的?

thinkphp中的logic和service层的用处:

logic:顾名思义,主要是用来堆砌业务代码的;

service:一般跟API接口做对接的代码都放在这里。

不管框架如何分层,本质上就是一个代码组织形式,为了方便人去阅读的,如果你高兴,你把所有代码放在一个文件没问题,只要你看的懂,维护的了。

同时我们要理解,框架是给我们方便的,不要被框架束缚,也不要为了学框架而学框架

thinkphp模型层Model、Logic、Service讲解

ThinkPHP支持模型的分层 ,除了Model层之外,我们可以项目的需要设计和创建其他的模型层。

通常情况下,不同的分层模型仍然是继承系统的\Think\Model类或其子类,所以,其基本操作和Model类的操作是一致的。

例如在Home模块的设计中需要区分数据层、逻辑层、服务层等不同的模型层,我们可以在模块目录下面创建Model、Logic和Service目录,把对用户表的所有模型操作分成三层:

 ● 数据层:Home\Model\UserModel 用于定义数据相关的自动验证和自动完成和数据存取接口

 ● 逻辑层:Home\Logic\UserLogic 用于定义用户相关的业务逻辑

 ● 服务层:Home\Service\UserService 用于定义用户相关的服务接口等

三个模型层的定义如下:

Model类:Home\Model\UserModel.class.php

namespace Home\Model;
class UserModel extends \Think\Model{
}

实例化方法:D('User');

Logic类:Home\Logic\UserLogic.class.php

namespace Home\Logic;
class UserLogic extends \Think\Model{
}

实例化方法:D('User','Logic');

Api类:Home\Api\UserApi.class.php

namespace Home\Api;
class UserApi extends \Think\Model{
}

实例化方法:D('User','Api');

D方法默认操作的模型层由DEFAULT_M_LAYER参数配置,我们可以改变默认操作的模型层为Logic层,例如:

'DEFAULT_M_LAYER' => 'Logic', // 默认的模型层名称

这样,当我们调用:

$User = D('User');

的时候其实是实例化的 UserLogic类,而不是UserModel类。

推荐教程:PHP教程

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn