新增分行在雅虎日历API的描述字段(Add line break in description fi

2019-10-29 15:23发布

我试图将链接添加到这样的雅虎日历事件

https://calendar.yahoo.com/?v=60&DESC=Client%20Info%3A<br>Name%3A%20Hello%20World<br>&ST=20180630T070000&DUR=0100

但是,事件的描述出现在同一条线上。 其他的事情都是好的。 任何人都可以建议我如何能在添加换行符DESC ,使它看起来像这样

Client Info
Name: Hello World

PS:同样的描述工作在谷歌日历API罚款。

Answer 1:

打破的线使用%0d%0a编码CRLF或\r\n )或%0a (编码LF或\n )。

例:

https://calendar.yahoo.com/?v=60&st=st20201231T193000&DUR=0200&desc=With%20clowns%0aand%20stuff&in_loc=North%20Pole

欲了解更多详情,您可以检查此文件: https://github.com/InteractionDesignFoundation/add-event-to-calendar-docs/blob/master/services/yahoo.md



文章来源: Add line break in description field of yahoo calendar api