我设置了一个下载功能,将html文件下载到cordova.file.dataDirectory。
在此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>