Home  >  Article  >  Backend Development  >  Regarding the problem of module parameter passing in the MVC framework

Regarding the problem of module parameter passing in the MVC framework

WBOY
WBOYOriginal
2016-10-22 00:14:25876browse

1. Recently, I noticed such a phenomenon during the development process. Usually CURD operations on data are placed in the module. Just call in the controller and pass in the corresponding parameters! I personally dislike this way of passing parameters through formal parameters! I'm wondering if we can receive parameters in the module and process them? In this way, the module can be called casually in other places? You can understand what parameters this module requires by yourself!

How most people write

<code>//模块
public function login($userName,$passWord,$validCode) {
    $param['userName'] = $userName;
    $param['passWord'] = $passWord;
    $param['validCode'] = $validCode;
    return $param;
  }
  
//控制器  
public function test(){
    $userName = $_POST['userName'];
    $passWord= $_POST['passWord'];
    $validCode= $_POST['validCode'];
    $this->login($userName,$passWord,$validCode));
}</code>

My way of writing

<code>//模块
public function login() {
    $param['userName'] = $_POST('userName');
    $param['passWord'] = $_POST('passWord');
    $param['validCode'] = $_POST('validCode');
    return $param;
  }
  
//控制器  
public function test(){
    $this->login();
}</code>

But now most people use the first way of writing! I admit that my writing method may cause problems when running from the command line! But I think for the simplicity of the code, I will choose to encapsulate a function to adapt my writing method to various scenarios

Reply content:

1. Recently, I noticed such a phenomenon during the development process. Usually CURD operations on data are placed in the module. Just call in the controller and pass in the corresponding parameters! I personally dislike this way of passing parameters through formal parameters! I'm wondering if we can receive parameters in the module and process them? In this way, the module can be called casually in other places? You can understand what parameters this module requires by yourself!

How most people write

<code>//模块
public function login($userName,$passWord,$validCode) {
    $param['userName'] = $userName;
    $param['passWord'] = $passWord;
    $param['validCode'] = $validCode;
    return $param;
  }
  
//控制器  
public function test(){
    $userName = $_POST['userName'];
    $passWord= $_POST['passWord'];
    $validCode= $_POST['validCode'];
    $this->login($userName,$passWord,$validCode));
}</code>

My way of writing

<code>//模块
public function login() {
    $param['userName'] = $_POST('userName');
    $param['passWord'] = $_POST('passWord');
    $param['validCode'] = $_POST('validCode');
    return $param;
  }
  
//控制器  
public function test(){
    $this->login();
}</code>

But now most people use the first way of writing! I admit that my writing method may cause problems when running from the command line! But I think for the simplicity of the code, I will choose to encapsulate a function to adapt my writing method to various scenarios

Statement:
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