我是Titanium的新手。我有webview
。 webview
的内容可以是pdf
文件,也可以是url
。我想将webview
内容另存为pdf
个文件。我使用以下代码创建了webview:
var webViews = Ti.UI.createWebView({
left : 0,
top : 0,
right : 0,
bottom : 0,
url : 'http://www.appcelerator.com'
});
请有人帮帮我......
答案 0 :(得分:1)
您无法直接转换pdf中的webview数据,但您必须首先解析html,然后使用js pdf创建pdf.Here是带示例的代码
https://github.com/Mindelusions/TiJSPDF
由于