调用第三方程序打开文件,Android下面可以,iOS下面点击没有反应,请解答,谢谢
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Runtime Example</title>
<script type="text/javascript">// 扩展API加载完毕后调用onPlusReady回调函数
document.addEventListener("plusready", onPlusReady, false);
// 扩展API加载完毕,现在可以正常调用扩展API
function onPlusReady() {}
// 打开文件操作
function testFile() {
plus.runtime.openFile("./file/a.pdf");
}</script>
</head>
<body>
调用第三方程序打开文件
<br/>
<button onclick="testFile()">Open File</button>
</body>
</html>
2 个回复
Neil_HL
你应该是路径写错了,我调用当前index.html是没问题的。
function testFile() {
plus.runtime.openFile("_www/index.html");
}
9***@qq.com (作者)
@DCloud_Neil 谢谢,是我的路径没搞明白,原来Android的和iOS的路径是不一样的!在这里转了半天!
DCloud_IOS_XTY
目前iOS不支持相对路径,下个版本会支持
2017-02-27 10:24