1

我有一个淘汰赛 observable,其中包含一个包含换行符的文本。

像这样:

 var  str += item.first_name +  " " + item.last_name + "," + item.occupation + "\n\n"; 
 str += "RE :" + item.first_name +  " " + item.last_name + ", DOB: "
                            + item.date_of_birth + "\n"; 
text = ko.observable(str); 

我用来显示字符串的方法是:

$pdf->MultiCell(0,8,$text);

我在我的 pdf 中得到的结果是:

 Dr. Bart grahamson,MBBSRE :Jack Junior, DOB: 1985-01-02

什么是捕捉这些换行符的方法?

4

1 回答 1

0

使用 \n 和 \r。

var  str += item.first_name +  " " + item.last_name + "," + item.occupation + "\n \r\r \n"; 
 str += "RE :" + item.first_name +  " " + item.last_name + ", DOB: "
                            + item.date_of_birth + "\n \r"; 
text = ko.observable(str); 
于 2013-04-25T16:06:34.200 回答