我正在尝试使用
chart.exportChart({
type: 'application/pdf',
filename: 'my-pdf'
});
在 Phonegap 应用程序中没有成功,尽管在浏览器中一切正常。
我的问题:
我想在 iOS 电子邮件客户端中将呈现的图表附加为 pdf/png/jpeg。如何使用chart.exportChart
或任何其他方式将下载的内容保存到 iOS 应用程序沙箱?filename
我应该在方法的键中给出 App Sandbox 路径chart.exportChart
吗?
这是我试过的:(我在cordova-1.6.1.js上)
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFileSys, fail);
function fail() {
}
function gotFileSys(fileSystem) {
chart.exportChart({
type: 'application/pdf',
filename: fileSystem.root.fullPath+"/my-pdf"
});
}
以上不工作,控制台说 -
[INFO] 成功回调错误:File1 = TypeError: 'undefined' is not a function
PS:我尝试的方式是一种绝望的行为:(