Hi,
First and foremost, thans for a great API!
I do wonder though, how do I format the biography text? (bioURL = 'http://api.themoviedb.org/3/person/18897?api_key=') I wanna split it up in a couple of paragraphs instead of it being a wall of text..
Im a bit new working with API:s so Im sorry if the question might be simple and the answer obvious.
找不到电影或节目?登录并创建它吧。
Travis Bell 的回复
于 2016 年 02 月 17 日 1:32下午
Hi shenden,
The API will return
\n
for new lines. You can sub those out with whatever you're doing in your app (ie.<p>
tags if it's HTML).Cheers.
shenden 的回复
于 2016 年 02 月 18 日 8:38上午
Hey Travis! Thanks for the quick response!
Yeah I guessed it was something like that, but I still don't get exactly how? Im writing out the data this way: var jjBio = '
' + data.biography + '
'; And it still gives me the same problem. Where do I put the? Sorry again, Im really new at this.
Travis Bell 的回复
于 2016 年 02 月 18 日 8:44下午
Hi Shenden,
There's a few ways you can do this. I am most familiar with Ruby so I can really only provide some examples with it.
Lets say you had a string:
You could do:
You could also use something like Markdown, which is what I actually do on the website (using RedCarpet):
Hope that helps.