我试图在Postman Console中使用\n
在多行显示字符串。我怎么能这样做?
示例:
var mystr='line\n another line\n another line';
console.log(mystr);
期待:
line
another line
another line
获得:
lineanother lineanother line
注意:它在Firefox暂存器中按预期工作。
答案 0 :(得分:2)
https://github.com/postmanlabs/newman/issues/1477 “Postman控制台日志不允许在下一行#1477中写入字符串” 在postman github上问同样的问题,我会在这里得到解决方案后更新。 谢谢@Danny Dainton:)
答案 1 :(得分:1)
我不认为你可以在Postman控制台中实现这一点 - 也许值得在Postman github项目上提出一个问题,是否已经没有了。
我建议做与评论相同的事情,将\n
添加到其他所有控制台,但是这个很奇怪。
我认为目前唯一的方法就是添加多个console.log()
语句,让你的vars在新行上打印。
另一种选择是将您需要的内容放入array
- 这不是理想的,但会在控制台中以不同的方式为您提供信息。
答案 2 :(得分:1)
键入3次console.log:
console.log('linea1');
console.log('linea2');
console.log('linea3');

答案 3 :(得分:1)