如何在cordova.file.dataDirectory中包含来自www的脚本

时间:2018-12-31 07:03:00

标签: javascript file cordova structure

我设置了一个下载功能,将html文件下载到cordova.file.dataDirectory。

即/data/data/myapp/files/home.html

在此home.html中,我需要包含www文件夹中的cordova.js。

我不知道如何实现这一目标。

我试图查看是否可以在全局范围内将其包括在内,但似乎没有。非常感谢您的帮助!

//if the html file is in www folder, I can do this
<!DOCTYPE html>
...
<script type="text/javascript" src="cordova.js"></script>
</html>

//but if the html file is inside cordova.file.dataDirectory
<!DOCTYPE html>
...
<script type="text/javascript" src="???????/cordova.js"></script>
</html>

0 个答案:

没有答案