新行字符未正确反映。

huangapple go评论63阅读模式
英文:

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}`;

huangapple
  • 本文由 发表于 2023年7月10日 14:49:58
  • 转载请务必保留本文链接:https://go.coder-hub.com/76651293.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定