gpt4 book ai didi

android - Phonegap - 2.9.0 - 子目录问题

转载 作者:行者123 更新时间:2023-11-29 01:41:16 25 4
gpt4 key购买 nike

我是 phone gap 的新手,真的很难完成这件事。

基本上,目录结构是这样的:

/www
css/*
img/*
js/*
pages/*
config.xml
index.html

当我尝试从 img 目录中引用的 index.html 添加图像时,图像加载成功。但是当我尝试从 js 目录中的页面引用图像时,它不会加载图像。我是从 js 目录中的 index.js 做的。我在 js 目录中提供这样的路径:

<img src="../img/abc.jpg">

当我使用“phonegap app”进行调试时,它确实找到了图像,但是在使用“phonegap run android”构建 apk 并将应用程序加载到我的设备上后,图像没有加载。

此外,pages 目录中的任何页面都找不到 cordova_plugin.js,因此不会加载任何插件 .js 文件。

基本上我不调用 cordova_plugin.js 文件。它由我包含在我的 html 中的 plugin.js 调用。所以基本上在我的 www/index.html 中我包含

 <script type="text/javascript" src="phonegap.js"></script>

它隐式调用加载所有插件的 cordova_plugins.js。这很好用。但是当在 www/pages 目录中时,我是这样引用它的

<script type="text/javascript" src="../phonegap.js"></script> 

在这种情况下,phonegap.js 加载成功,但无法加载 cordova_plugins.js,因此没有加载任何模块。注意:我发现在 chrome 中调试文件不会加载。

非常感谢任何帮助

最佳答案

您的 javascript 文件正在构建 html 以进入 index.html DOM,因此您应该包含 src,因为它将被 index.html 引用:

<img src="img/abc.jpg" />

不确定你的意思:

When i Debug using the "phonegap app" , it does find the image, but after building the apk using "phonegap run android" , and loading the app on my device the image does not load.

所以,也许我误解了你的问题。

Also, any page inside the pages directory cannot find the cordova_plugin.js and thus any plugin .js file does not load.

您如何引用 .js 文件?对于 pages/foo.html 它将是:

 <script type="text/javascript" src="../js/cordova_plugin.js"></script>

但同样,如果没有一些代码示例,则不确定您究竟在寻找什么。

关于android - Phonegap - 2.9.0 - 子目录问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24531679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com