문제

I'm writing a RSS feed in django. I give the item tag a link tag with the link to the original product. my URL looks like http://localhost:8000//nieuws_helpdesk.html?year={{ item.publish_date_start|date:"Y" }}&month={{ item.publish_date_start|date:"m" }}

For some reason i dies completely when i use the &. It just stops their. When i only use year or only month is does work btw.

Does anybody know how ?

도움이 되었습니까?

해결책

You need to escape the ampersand: & should be &.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top