5

我有一个输出许多图像的系统,它们旁边有一个 A 链接以将它们设置为专辑封面。

我有多个专辑,并且在我的数据库中有一个名为“is_feature”的字段,如果图像是封面,则设置为 1,如果不是,则设置为 0。

我不知道选择图像的最佳方法,我最初输出如下内容;

<a href="/admin/set_photo/'.$image_id.'" title="Set this photo as the feature photo">Set</a>

(image_id 显然是图片的 id),这个函数会调用模型并将所有其他照片的“is_feature”字段设置为 0,并将这张照片的“is_feature”字段设置为 1。

问题是它也清除了所有其他专辑功能。我几乎需要在A链接中传递给变量,第一个是图像的id,第二个是专辑的id,然后我的模型函数只能将“is_feature”设置为0 where album_id =专辑的id通过了。

反正有没有像这样传递两个变量?还是我以完全错误的方式解决这个问题?

4

3 回答 3

13

您可以将 URL 中的值设置为查询参数

<a href="/admin/set_photo?var1=<?= $image_id;?>&var2=<?= $size;?>"
   title="Set this photo as the feature photo"> Set </a>

您可以在控制器中检索

$image_id = $this->input->get('var1');
$image_size = $this->input->get('var2');
于 2012-09-20T07:03:57.007 回答
5

呃什么?你可以通过任何你需要的东西。

$data = array(
               'title' => 'My Title',
               'heading' => 'My Heading',
               'message' => 'My Message'
          );

$this->load->view('blogview', $data);
于 2012-09-19T23:15:51.767 回答
0

根据字符串或数组的数据类型,有 3 种传递数据的方法(您可以使用下面解释的任何一种,根据您的要求):

通过视图

  //For data you collected through POST method from FORM, collect them as array
        $data=array(
            'employee_name' => $this->input->post('emp_name'),
            'employee_email' => $this->input->post('emp_email'),
            'employee_password' => $this->input->post('emp_password')
             );

$this->load-> view(''mynextpage", $data)

通过控制器

redirect('controller_name/index'.$valueofcustomer);
OR
redirect(base_url()."controller_name/index/".$valueofcustomer);



//then in your 'view', you can access value of customer like this:
$v_o_c = $this->uri->segment(3); 
echo "your value is " .$v_o_c;

通过会话

$data = array(
                'user_name' => $user_name,
                'is_logged_in' => true
            );

$this->session->set_userdata($data); //set the session
redirect('another_controller/index'); 

//then access those in another_controller like this:
$in = $this->session->set_userdata('$data');

Note: Session data will available only for redirect and lost on next page request
于 2017-03-01T12:17:01.543 回答