我正在尝试\n
在 Postman 控制台中显示多行字符串。我怎样才能做到这一点?
例子:
var mystr='line\n another line\n another line';
console.log(mystr);
期待:
line
another line
another line
得到:
lineanother lineanother line
注意:它在 Firefox 暂存器中按预期工作。
我正在尝试\n
在 Postman 控制台中显示多行字符串。我怎样才能做到这一点?
例子:
var mystr='line\n another line\n another line';
console.log(mystr);
期待:
line
another line
another line
得到:
lineanother lineanother line
注意:它在 Firefox 暂存器中按预期工作。