2016-09-27 75 views
1

OKay所以我正在開發電子商務網站,在那裏我使用Common View文件來編輯和插入數據。問題是我已經爲添加和插入做了一個共同的功能。所以,如果我們編輯表單,它的ID就是通過URL傳遞的。該函數獲取URL並操作數據並查看編輯後的表單。問題是插入數據。我的通用函數接受一個參數[編輯時正在傳遞的ID]。當我嘗試加載「添加文件」時,它給我錯誤。同功能編輯和插入在Codeigniter

Missing argument 1 for Register::product() 

這裏是我的代碼:

Controller: 
function product($get_product_id) 
    { 
     //DO Something 
     //Check POST data 
     // add OR UPDATE POST Data 
    } 

View File: 
<? if(isset($data)) 
     { 
      foreach ($data as $data1) 
      { 
      $get_product_id=$data1->id; 
      $get_product_name=$data1->product_name; 
      $get_product_code=$data1->code; 
      $get_product_price=$data1->price; 
      $get_product_quantity=$data1->quantity; 
      $get_product_status=$data1->status; 
      $get_product_details=$data1->details; 
      $get_product_image=$data1->productimage; 

      } 

     } 
     else 
     { 
      $get_product_id=""; 
      $get_product_name=""; 
      $get_product_code=""; 
      $get_product_price=""; 
      $get_product_quantity=""; 
      $get_product_status=""; 
      $get_product_details=""; 
      $get_product_image=""; 
     } 
     ?> 
<? echo form_open_multipart('register/product/'.$get_product_id.'');?> 
<table width="90%" border="0" cellspacing="0" cellpadding="6"> 

<tr> 
    <td width="20%" align="right"><? echo form_label('Product Name');?></td> 
    <td width="80%"><?echo form_input(array('id' =>'product_name','name' =>'product_name','size' => '64','value' => $get_product_name));echo form_hidden('id', $get_product_id);?> 
     <br/> 
    </td> 
</tr> 
//And So on... 
+1

用戶功能產物($ get_product_id = NULL){ // 做某事 //檢查POST數據 //添加或更新數據POST} –

回答

3

控制器代碼應該是

Controller: 
    function product($get_product_id = NULL) { 
    if ($get_product_id) { 
     //edit code 
    } else { 
     //insert code 
    } 

    //DO Something 
    //Check POST data 
    // add OR UPDATE POST Data 
} 
2
Controller: 
function product($get_product_id==NULL) // This means that you are assigning the default value if the function gets a null value for the argument $get_product_id 
    { 
     //DO Something 
     //Check POST data 
     // add OR UPDATE POST Data 
    } 

請更改這樣的說法,做任何你want.Inside功能您必須檢查$get_product_id是否爲空,如果$get_product_id i s null您可以決定請求是否插入,否則請求是更新請求