在iOS中构建手机间隙apache ..如何将视图从纵向更改为横向..?
makePDFAndShare: function(e) {
e.preventDefault();
progressShow();
/* generate pdf using url. */
pdf.htmlToPDF({
url: this.$urlShare.val(),
landscape : "portrait",
type: "share"
}, this.success, this.failure);
},
答案 0 :(得分:0)
你尝试使用横向而不是肖像吗?
makePDFAndShare: function(e) {
e.preventDefault();
progressShow();
/* generate pdf using url. */
pdf.htmlToPDF({
url: this.$urlShare.val(),
landscape : "landscape",
type: "share"
}, this.success, this.failure);
}