Readdy Write  
0,00 €
Your View Money
Views: Count
Self 20% 0
Your Content 60% 0

Users by Links 0
u1*(Content+Views) 10% 0
Follow-Follower 0
s2*(Income) 5% 0

Count
Followers 0
Login Register as User
React ;

React: No routes matched location "/article/%7Barticle.idarticle%7D"

29.12.2022 (πŸ‘2250)


Problem %7B statt der { Klammer in React

Beim Versuch einen Link mit <a href=β€œβ€¦β€œ> zu erstellen, wird mit React ein %7B erzeugt in der Ausgabe URL

Problem Code in React

<a href="/article/{article.idarticle}" >

{article.title}                            

</a>

</div>

 

Wird zu

"/article/%7Barticle.idarticle%7D"

 


 

LΓΆsung:

In die React Klammer als Javascript verbinden

<a href={"article/"+ article.idarticle} >

{article.title}                           

</a>


Video Youtube