Django templates - split string to array

后端 未结 5 2061
借酒劲吻你
借酒劲吻你 2020-11-28 09:07

I have a model field, which stores a list of URLs (yeah, I know, that\'s wrong way) as url1\\nurl2\\nurl3<...>. I need to split the field into an array in

5条回答
  •  情深已故
    2020-11-28 09:58

    I wanted to split a list of words to get a word count, and it turns out there is a filter for that:

    {{ value|wordcount }}
    

    https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#wordcount

提交回复
热议问题