英文:
New line characters not getting reflected properly
问题
我正在提取邮件的主题、发件人和正文,并使用Outlook插件将它们分享给另一个应用程序。负载看起来像这样:
var payload = '主题:' + '\n' + subject + '\n' +
'发件人:' + '\n' + sender + '\n' +
'正文:' + '\n' + bodyContent + '\n' +
'附加消息:' + '\n' + addMsg;
但换行字符没有正确显示,所有内容都在同一行上。
英文:
I am extracting the subject, sender and the body of a mail and sharing these to another application using outlook add-in. The payload looks like this:
var payload = 'Subject: ' + '\n' + subject + '\n' +
'Sender: ' + '\n' + sender + '\n' +
'Body: ' + '\n' + bodyContent + '\n' +
'Additional Message: ' + '\n' + addMsg;
but the new line characters are not getting reflected properly. It is all in the same line.
答案1
得分: 0
这段代码的翻译如下:
这段代码的翻译如下:
var payload = `主题:\n${subject}\n\n发件人:\n${sender}\n\n正文:\n${bodyContent}\n\n附加信息:\n${addMsg}`;
英文:
This worked
var payload = `Subject:\n${subject}\n\nSender:\n${sender}\n\nBody:\n${bodyContent}\n\nAdditional Message:\n${addMsg}`;
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论