질문: Poll에서 데이터($data)를 전달하려고 할 때 정의되지 않은 변수 오류가 나타납니다. results_view 뷰에 대한 컨트롤러입니다. 왜 이런 일이 발생합니까?
관련 컨트롤러 코드는 다음과 같습니다.
<code class="php">public function results() { echo "These are the results"; $data = "hello"; $this->load->view('results_view', $data); }</code>
답변: 문제는 $data가 배열이나 개체로 정의되지 않았기 때문에 발생합니다. , 뷰에 데이터를 전달할 때 필요합니다.
이 문제를 해결하려면 $data를 배열 또는 객체로 정의하세요.
<code class="php">$data = array( 'message' => 'hello' );</code>
수정된 컨트롤러 코드:
<code class="php">public function results() { echo "These are the results"; $data = array( 'message' => 'hello' ); $this->load->view('results_view', $data); }</code>
뷰의 데이터에 액세스하려면 다음 구문을 사용하세요.
<code class="php">//results_view.php echo $message;</code>
위 내용은 CodeIgniter 컨트롤러에서 View로 데이터를 전달할 때 \'정의되지 않은 변수\' 오류가 발생하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!