register_view
私は ajax を使用して Web サイトの一部のコンテンツを動的に読み込みます。ビュー自体 (など) にデータを送信する必要がないため、登録フォームやログイン フォームなどを読み込むときにうまく機能します。
しかし、たとえばユーザーのプロファイルなど、別のものをロードしようとすると、いくつかの変数をビューに渡す必要があり、ここで AJAX に問題が発生します。
そして、私が送信した変数はコントローラーによってテストされていると確信していますがisset
、!empty
ビューでは、突然未定義の変数になります。これは、AJAX 経由でプロファイルにアクセスする場合にのみ発生します。
PHP コード:
コントローラー:
if($this->uri->segment(4)){//if viewing a specific profile.
/*escape the uri segment*/
$segment = intval($this->uri->segment(4));
if($segment == 0){//the uri segment was a string
/*display error message.*/
$data['content'] = 'redirect_message';
$data['information'] = 'Could\'nt find the profile!, please try again.';
$this->load->view('templates/manage', $data);
}
else{//else , the uri segment is a number, considered safer.
$query_result = $this->db_model->getProfile($segment);//get the Profile
/*check if any results were returned.*/
if($query_result->num_rows() > 0){
/*load a view to display the specified Profile.*/
$data['information'] = $query_result;
if($this->input->is_ajax_request())//requesting via ajax, display the content only.
$this->load->view("view_Profile_view", $query_result);
else{
$data['content'] = 'view_Profile_view';
$this->load->view('templates/manage', $data);
}
}
else{ //no rows returned.
/*show error message.*/
$data['content'] = 'redirect_message';
$data['information'] = 'Error viewing the Profile!';
$this->load->view('templates/manage',$data);
}
}
}
ビュー ( view_Profile_view
):
/*display the profile:*/
$row = $information->row();//error occurs here!
echo $row->username.'</br>';
echo $row->email;
jQuery/JS コード:
var base_url = "/";
var site_url = "/index.php/";
$(document).ready(function(){
$('.ajax_anchor').click(function(){
loadForm(this);
return false;
});
});
function loadForm(anchor){
var splitted_url = $(anchor).attr('href').split("/");
if(splitted_url.length == 7){//probably accessing /site/login or /site/register not something like /site/profiles/view/[ID].
var url = splitted_url[splitted_url.length-2]+"/"+splitted_url[splitted_url.length-1];
}
else if(splitted_url.length == 9) {//probabbly accessing /site/profiles/view/[ID] not something like /site/login.
var url=
splitted_url[splitted_url.length-4]+"/"
+
splitted_url[splitted_url.length-3]+"/"
+
splitted_url[splitted_url.length-2]+"/"
+
splitted_url[splitted_url.length-1]+"/"
;
}
var csrf_token = $.cookie('csrf_cookie_name');//holding the csrf cookie generated by CodeIgniter, using jQuery cookie plugin
$.ajax({
type: "POST",
url: site_url+url,
data: {csrf_test_name:csrf_token}//pass the csrf token otherwise codeigniter will return an error(500).
}).done(function( html ) {
var ajaxResult$ = $('#ajax_result');//ajax_result is an empty div, used to display ajax results.
ajaxResult$.empty().append(html).dialog();//dialog:is a jquery-ui function.
});
}