Blog coding and discussion of coding about JavaScript, PHP, CGI, general web building etc.

Wednesday, March 1, 2017

'Notice (8): Undefined index' in the view when looping through 'containable' results

'Notice (8): Undefined index' in the view when looping through 'containable' results


I'm using containable to pull associated records into the view action and am getting an error message when looping through results.

Also, I'm using a 'sluggable' behaviour, so the find operation has a condition to search by this variable.

When I debug the find variable in the view, I do see the correct records. But when I try and loop through them in the view I get the 'Notice (8): Undefined index: error.' Ideally I liked to understand how to trouble shoot this error since it happens occasionally.

The model setup is:

tournaments have many tournamentDetails

tournamentDetails have many updates

The records I'm trying to display are:

tournament->tournamentDetails->updates

The tournament controller looks like this:

    $tournament = $this->Tournament->find('first', array(           'conditions' => array( 'slug' => $slug),           'contain' => array(          'TournamentDetail' => array(               'Update' => array('order' => 'Update.id DESC'),          ))));  

The tournament view action looks like this:

     

Update:


The 'update' data in the view when in debug looks like:

[Update] => Array                      (                          [0] => Array                              (                                  [id] => 2                                  [title] => Indoor Challenge                                  [date] => 2010-03-19                                  [body] => Congratulations 2010 Champion                                   [tournament_detail_id] => 4                                  [homeStatus] => no                              )                            [1] => Array                              (                                  [id] => 1                                  [title] => first round matches start today                                   [date] => 2010-03-19                                  [body] => this tournament's first round matches start today.                                   [tournament_detail_id] => 4                                  [homeStatus] => no                              )  

Is there something really obvious that I'm overlooking when looping through the 'updates' ?

Thanks, Paul

Resolution

Thanks everyone for the input. After taking a few steps back it occured to me what was happening with the 'undefined index' and comments about how to loop.

The problem was that the foreach loop wasn't nested, it only looped on the first level of association. The forearch loop deal with 'tournaments' which have many 'tournamentDetails'.

The loop needed to go one level deeper to 'tournamentDetails that have many 'updates'.

Here's the code that resolved this in the view.

          

Update:


If others are looking to understand how to use the containable behavior with more than one level of association, just remember that you may have to have nested foreach loops in the view to display the results you're after.

Cheers, Paul

Answer by RSK for 'Notice (8): Undefined index' in the view when looping through 'containable' results


I think i understand you problem and please Try looping in this way

     

Update:


Answer by vindia for 'Notice (8): Undefined index' in the view when looping through 'containable' results


RSK's answer should be right, so since it's still not working you're probably not giving all the information needed. What does this output: debug($tournament); ?

Answer by benjamin for 'Notice (8): Undefined index' in the view when looping through 'containable' results


Paul,

given that the other things are right, could it be that you are mixing singular, plural, uppercase and lowercase? In particular the update/updates in various combinations.

Edit 0: Quick shot?: There simply is no such index defined, notice that you are working with an array consisting of arrays. It seems you have to use another loop nested in the first.

Edit 1: Unfortunately, I can only provide quite generic help, as I do not sit infront of your code. From your post and comments, I would guess that some variable names got mixed up. Just going over the whole dataflow normally does it. What is the exact variable name in the controller which delivers the correct data? If there is one, is it properly set from the controller to the view? Does the view address it correctly.

You are thinking great, this is what I did the last week, but I am quite sure that should do it. Clean out all the view code which currently makes use of any variables from the controller, proceed as described above keeping the dataflow in mind (but do not spend more than one hour on this).

If it does not work:

Something is foobared. Before you spend another week in despair, I would

  1. try it without the containable behavior, see if it works
  2. try to set up exactly the
    same scenario in a completely new
    CakePHP environment (in your case 1.2.5), see if it works

If you achieve your goals, try to see what went wrong in the original (often a face slapping moment).

If not:

  1. try to see if there is a known bug
  2. consider upgrading (or try to achieve your goals in 1.3.7 first)

Good luck, Benjamin

Answer by Abba Bryant for 'Notice (8): Undefined index' in the view when looping through 'containable' results


This all assumes your debug information is debug( $tournament ) and not debug( $update )

/* your old code */        

Update:


If the debug value you provided was a debug of the $tournament variable then the first part of your loop simply assigns the numerically keyed arrays inside of the tournaments variable to the $update value.

So, when you send $tournament[ 'Update' ] through the loop you are getting a structure in the $update array like the following.

array(      [id] => 2      [title] => Indoor Challenge      [date] => 2010-03-19      [body] => Congratulations 2010 Champion       [tournament_detail_id] => 4      [homeStatus] => no  )  

But in your loop you are trying to access the keyed values as if they exist under an additional layer keyed with 'Update'. That key does not exist in your interior array.

So if my assumption is right - your loop should look like:

/* your old code with edits removing the additional interior Update key */        

Update:


There also seemed to be some spacing in your brackets in the original code - I don't know if this is an issue or not but it looked odd to me.

Answer by Paul for 'Notice (8): Undefined index' in the view when looping through 'containable' results


Resolution

Thanks everyone for the input. After taking a few steps back it occurred to me what was happening with the 'undefined index' and comments about how to loop.

The problem was that the foreach loop wasn't nested, it only looped on the first level of association. The forearch loop deal with 'tournaments' which have many 'tournamentDetails'.

The loop needed to go one level deeper to 'tournamentDetails that have many 'updates'.

Here's the code that resolved this in the view.

          

Update:


If others are looking to understand how to use the containable behavior with more than one level of association, just remember that you may have to have nested foreach loops in the view to display the results you're after.

Cheers, Paul


Fatal error: Call to a member function getElementsByTagName() on a non-object in D:\XAMPP INSTALLASTION\xampp\htdocs\endunpratama9i\www-stackoverflow-info-proses.php on line 72

0 comments:

Post a Comment

Popular Posts

Powered by Blogger.