Fetching Items from a ManyToMany Collection
Keep on Learning!
If you liked what you've learned so far, dive in! Subscribe to get access to this tutorial plus video, code and script downloads.
With a Subscription, click any sentence in the script to jump to that part of the video!
Login SubscribeNew mission! On the genus show page, I want to list all of the users that are studying this Genus. If you think about the database - which I told you NOT to do, but ignore me for a second - then we want to query for all users that appear in the genus_scientist join table for this Genus.
Well, it turns out this query happens automagically, and the matching users are set into the $genusScientists property. Yea, Doctrine just does it! All we need to do is expose this private property with a getter: public function, getGenusScientists(), then return $this->genusScientists:
| // ... lines 1 - 14 | |
| class Genus | |
| { | |
| // ... lines 17 - 183 | |
| public function getGenusScientists() | |
| { | |
| return $this->genusScientists; | |
| } | |
| } |
Now, open up the show.html.twig genus template and go straight to the bottom of the list. Let's add a header called Lead Scientists. Next, add a list-group, then start looping over the related users. What I mean is: for genusScientist in genus.genusScientists, then endfor:
| // ... lines 1 - 4 | |
| {% block body %} | |
| // ... lines 6 - 7 | |
| <div class="sea-creature-container"> | |
| <div class="genus-photo"></div> | |
| <div class="genus-details"> | |
| <dl class="genus-details-list"> | |
| // ... lines 12 - 20 | |
| <dt>Lead Scientists</dt> | |
| <dd> | |
| <ul class="list-group"> | |
| {% for genusScientist in genus.genusScientists %} | |
| // ... lines 25 - 31 | |
| {% endfor %} | |
| </ul> | |
| </dd> | |
| </dl> | |
| </div> | |
| </div> | |
| <div id="js-notes-wrapper"></div> | |
| {% endblock %} | |
| // ... lines 40 - 57 |
The genusScientist variable will be a User object, because genusScientists is an array of users. In fact, let's advertise that above the getGenusScientists() method by adding @return ArrayCollection|User[]:
| // ... lines 1 - 14 | |
| class Genus | |
| { | |
| // ... lines 17 - 183 | |
| /** | |
| * @return ArrayCollection|User[] | |
| */ | |
| public function getGenusScientists() | |
| { | |
| return $this->genusScientists; | |
| } | |
| } |
We know this technically returns an ArrayCollection, but we also know that if we loop over this, each item will be a User object. By adding the |User[], our editor will give us auto-completion when looping. And that, is pretty awesome.
Inside the loop, add an li with some styling:
| // ... lines 1 - 4 | |
| {% block body %} | |
| // ... lines 6 - 7 | |
| <div class="sea-creature-container"> | |
| <div class="genus-photo"></div> | |
| <div class="genus-details"> | |
| <dl class="genus-details-list"> | |
| // ... lines 12 - 20 | |
| <dt>Lead Scientists</dt> | |
| <dd> | |
| <ul class="list-group"> | |
| {% for genusScientist in genus.genusScientists %} | |
| <li class="list-group-item"> | |
| // ... lines 26 - 30 | |
| </li> | |
| {% endfor %} | |
| </ul> | |
| </dd> | |
| </dl> | |
| </div> | |
| </div> | |
| <div id="js-notes-wrapper"></div> | |
| {% endblock %} | |
| // ... lines 40 - 57 |
Then add a link. Why a link? Because before this course, I created a handy-dandy user show page:
| // ... lines 1 - 4 | |
| use AppBundle\Entity\User; | |
| // ... lines 6 - 11 | |
| class UserController extends Controller | |
| { | |
| // ... lines 14 - 44 | |
| /** | |
| * @Route("/users/{id}", name="user_show") | |
| */ | |
| public function showAction(User $user) | |
| { | |
| return $this->render('user/show.html.twig', array( | |
| 'user' => $user | |
| )); | |
| } | |
| // ... lines 54 - 79 | |
| } |
Copy the user_show route name, then use path(), paste the route, and pass it an id set to genusScientist.id, which we know is a User object. Then, genusScientist.fullName:
| // ... lines 1 - 4 | |
| {% block body %} | |
| // ... lines 6 - 7 | |
| <div class="sea-creature-container"> | |
| <div class="genus-photo"></div> | |
| <div class="genus-details"> | |
| <dl class="genus-details-list"> | |
| // ... lines 12 - 20 | |
| <dt>Lead Scientists</dt> | |
| <dd> | |
| <ul class="list-group"> | |
| {% for genusScientist in genus.genusScientists %} | |
| <li class="list-group-item"> | |
| <a href="{{ path('user_show', { | |
| 'id': genusScientist.id | |
| }) }}"> | |
| {{ genusScientist.fullName }} | |
| </a> | |
| </li> | |
| {% endfor %} | |
| </ul> | |
| </dd> | |
| </dl> | |
| </div> | |
| </div> | |
| <div id="js-notes-wrapper"></div> | |
| {% endblock %} | |
| // ... lines 40 - 57 |
Why fullName? If you look in the User class, I added a method called getFullName(), which puts the firstName and lastName together:
| // ... lines 1 - 15 | |
| class User implements UserInterface | |
| { | |
| // ... lines 18 - 197 | |
| public function getFullName() | |
| { | |
| return trim($this->getFirstName().' '.$this->getLastName()); | |
| } | |
| } |
It's really not that fancy.
Time for a test drive! When we refresh, we get the header, but this Genus doesn't have any scientists. Go back to /genus/new to create a more interesting Genus. Click the link to view it. Boom! How many queries did we need to write to make this work? None! That's right - we are keeping lazy.
But now, click to go check out the user show page. What if we want to do the same thing here? How can we list all of the genuses that are studied by this User? Time to setup the inverse side of this relationship!
24 Comments
Hello. i Need a little help. I have really long loading of my symfony webpage on localhost. FIrewall probably taking the most as u can see on screenshort. Is there someone who probably know how to fix it ? I tryind all thinks from internet but nothing works its taking like 6 seconds to load 1 page and thats bad if u want to test somehing new :) http://imgur.com/a/8X0YO
My controller : https://pastebin.com/1xcSeLjw
Please help me :) Thanks
Hey Marek Burda
Does it happens all the time ? When you clear the cache, the first time you load a page it takes longer because Symfony needs to setup a few things, but after that it should be fast
Yes it happening all the time. I tryid a lot of thigs.. restarting server, changim some things in services or parameters a lot of things from tutorials and forums on internet. But nothing change. Still loading page 6-10 seconds.
Hmm, it is a weird behaviour, in which enviroment are you running, windows, mac, linux ? Try to monitor your resources (htop command if you are on Linux), maybe something is leaking memory
Iam on windows :/ Every other pages are working normaly. Btw i think a projekt which i make before this one, working normaly and i also used same codes and db connections as here...
Okey a fixed it. Problem was in loading javascript and foundation scripts from nonexists files. (I have 1 where is exists and 1 who dont exist) so cose was looking for files who dont exist. But thanks :)
I'm glad to hear you could fix your problem :)
Hey, I've been looking what you did here, but I applied to my own project and didn't work.. I don't know what I am doing wrong.... I have posted the question in stackOverflow but seems that nobody is answering, I need help :( https://stackoverflow.com/q...
Hey Carles,
I see your question on SO was answered correctly, I'm glad you were able to solve this.
Cheers!
Hi,
The download button on this page https://knpuniversity.com/s... is serving the wrong video file, it's serving the EP07 instead of EP06
Hey Abesse,
Oh, I see what you mean here. Actually, if you look closer - it's the same correct video about "Fetching Items from a ManyToMany Collection", but it just has a wrong numbering :)
We'll fix numbering soon, thanks for this report!
Cheers!
Thank you.
Hi.
I have the following ManyToMany relationship:
Posts - Tags.
# AppBundle/Entity/Tag
/**
public function addPosts(Post $post)
/**
# AppBundle/Form/TagType
$builder->add('name');
# AppBundle/Form/PostType
$builder->add(
$builder->create('tags', FormType::class, ['by_reference'=>false]) ->add(
'tag',EntityType::class,[
# app/Resources/views/post/new.html.twig
<div class="form-group">
# AppBundle/Controller/PostController
/**
}
}
Hey Dan!
Ok! A few things:
1) If you can, install XDebug. Or, instead of using print_r, use
dump(). What's happening is that when youprint_rthe tags, you're expecting an array of Tag objects. But in fact, it's an ArrayCollection of Tag objects... and also that ArrayCollection contains a reference to the database connection... and a ton of other stuff. The tl;dr is that if you try toprint_rcertain objects, they will print forever and ever... and kill your browser :). If you install XDebug or (better) use Symfony'sdump(), it avoids this.2) Basically, you're building your "select" element correctly, by using the EntityType for
AppBundle:TagThough, you can simplify your builder code (I don't know if this is the problem, but it looks nicer):NOTICE that I added multiple => true and expanded => false options!
Then, you should simply be printing
{{ form_widget(form.tags) }}.3) Because your PostType is bound to a Post object, and because your PostType has a
tagsfield that uses the EntityType (and because this corresponds with thetagsproperty that you ultimately want to update)... you basically shouldn't need to do anything in your controller. What I mean is:Let me know if this helps! I would try it first without select2 (but using that shouldn't make any difference). What you have here is a pretty traditional ManyToMany form setup - it should end up looking similar to what we have here: http://knpuniversity.com/screencast/collections/entity-type-checkboxes
Cheers!
Wo hoooo! You're a life saviour! It worked! Many thanks!
Hi Guys:
how does the view know genusScientist.id is User ID not genus ID
Is it because of this?
If this is the reason, then I ArrayCollection| Genus [], it would give me genus ID instead. or does it works?
Hey Jian,
If you're talking about PhpStorm autocompletion in templates - yes, it's due to that annotation: "@return ArrayCollection|User[]" for getGenusScientists(). And yes, if you change it to "@return ArrayCollection|Genus[]" (what is not a good idea because getGenusScientists returns collection of *User* not Genus) - you'll get autocompletion for Genus entity instead of User in the template. But it will be just an autocompletion, you still will have *User* object which is autocompleted as Genus object, because there's no magic, getGenusScientists() return collection of genusScientists, i.e. users according to the Doctrine mapping for Genus::$genusScientists property.
P.S. if you want to get Genus ID in that for loop, you can call it on genus variable: {{ genus.id }}.
Cheers!
Thank you Victor! you are always been helpful :)
Hi guys:
I tried to dump the user object. And I could not find any ArrayCollection inside studiedGenuses.
as you can see -elements: [] is empty
How does symfony do the magic and accessing genusStudied.name?
Hey Jian!
When you haven't hydrated a relationship of an object (in this case User - StudiedGenuses), Doctrine creates and sets a "Proxy" into that property via "Reflection" by default, so when you use that property, it magically fetches and hydrates it on the fly with the proper entity object, and then, executes the method you called.
That's why you can see all those extra fields like "initialized"
I hope it helps you ;)
Have a nice day!
Thank you so much, I understand it now Cheer!
Hey folks,
thanks for this awesome site & your style.
Greetings from Germany
Hey Ronny,
Thanks for your warm words!
Cheers!
Haha, cheers! You rock for saying so! Cheers from Michigan, USA!
"Houston: no signs of life"
Start the conversation!