我无法让我的图片在我的phonegap版本中工作。
我读过绝对路径可能不起作用,所以我尝试了绝对路径和相对路径,但仍然没有运气。
我包括这样的图像:
<Col key={1} xs={3}>
<Image src='/tire_selected.png' responsive />
</Col>
或亲戚
<Col key={1} xs={3}>
<Image src='tire_selected.png' responsive />
</Col>
等于
<img class="img-responsive" src="tire_deselected.png" data-reactid=".0.0.1.0.0.0.0.1.1.0.0.$4.0">
Col&amp; Image是使用bootstrap-react的bootstrap helper组件。这一切在Web视图中都可以正常工作,但在使用phonegap构建时则不行。但是,应该已经编译了源,并且在两种情况下都没有错误。
以下是我的config.xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.app.exampleapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>App</name>
<description>
App
</description>
<author email="support@example.com" href="http://www.example.com">
Author
</author>
<content src="index.html" />
<preference name="permissions" value="none" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="14" />
<preference name="android-installLocation" value="auto" />
<gap:plugin name="org.apache.cordova.geolocation" />
<icon src="icon.png" />
<access origin="*" />
<plugin name="cordova-plugin-whitelist" version="1" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>
Git存储库:
app.js
vendor.js
config.xml
favicon.ico
humans.txt
index.html
robots.txt
tire_deselected.png
tire_selected.png
Icon.png工作正常。我不知道什么导致其他图像不起作用。任何帮助将不胜感激!
修改
我已尝试设置content-security-policy,如果这是我无法设置img-src并通过javascript显示图片的问题。
<meta http-equiv="Content-Security-Policy" content="
default-src http://10.3.10.104/ 'self' * 'unsafe-inline';
style-src http://10.3.10.104/ 'self' * 'unsafe-inline';
img-src http://10.3.10.104/ 'self' * 'unsafe-inline';
script-src http://10.3.10.104/ 'self' * 'unsafe-inline';">
但仍然没有运气
file:///tire_deselected.png net::ERR_FILE_NOT_FOUND
有文件存在,因为当将img-element插入index.html时会显示它。
我甚至尝试通过运行开发人员工具的源文件夹中显示的路径访问它。
file:///data/user/0/com.oas.exampleapp/files/downloads/app_dir/tire_deselected.png
也不起作用,我开始认为手机胶片坏了,至少与反应结合起来效果很差。
答案 0 :(得分:6)
编译后,build.phonegap.com将源文件放入“www”目录。
您可以使用以下路径“/ android_asset / www /”
访问本地图像文件<image src='/android_asset/www/tire_selected.png' responsive />
如果您的图片放在根目录中的子目录中,那么您可以使用以下内容:
<image src='/android_asset/www/sub-direcctory/tire_selected.png' responsive />
注意:如果包含本地图像文件,请将“sub-direcctory”替换为您自己的。“
答案 1 :(得分:2)
我在index.html中添加了一个img标记,并将src属性设置为“images / logo.png”,并且加载时没有问题。
Select Distinct IDClient, Count(IdClient)?
from Tbl1
where apptType in (1,2) and apptDate between '7/1/2016' and '7/31/2016'
我有一个带有img标签的反应组件和相同的src值“images / logo.png”
...
<body>
<div id="root"></div>
<img id="footer-logo" src="images/logo.png" style="background-color: black; width: 200px;" />
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script src="js/vendor.bundle.js"></script>
<script src="js/app.bundle.js?v=2"></script>
</body>
</html>
反应组件中的img不会加载; 404.然而这相当于真实
...
<div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0px; padding-top: 0px; letter-spacing: 0px; font-size: 24px; font-weight: 400; color: rgb(48, 48, 48); height: 64px; line-height: 64px; flex: 1 1 0px; text-align: center;">
<img id="header-logo" src="images/logo.png" style="width: 105px; margin-top: 16px;">
</div>
...
如何加载其中一个图像而另一个图像不加载?是否与动态加载到DOM中的react组件或者反应的虚拟DOM有关?
src属性等同于document.getElementById('footer-logo').src === document.getElementById('header-logo').src
。如果我像这样在#header-logo上设置src属性,它会加载:
file:///images/logo.png
希望这能为这种非常奇怪的行为提供更多信息。
答案 2 :(得分:0)
希望这会有所帮助。所以我也有问题。
我要做的是创建另一个文件夹/images/
(重复),并且仍然使用通过/static/components/images
文件夹react导入的图像。您可以通过添加暂存条件或实时条件来进一步处理此问题。
所以答案就在这里。
import Logo from '../images/logo.png';
<img src={`./${Logo}`} alt="Logo" />
完整示例。
import React, { Component } from 'react';
import Logo from '../images/logo.png';
class Header extends Component {
render() {
return(
<div className="logo mt-3">
<img src={`./${Logo}`} alt="Logo" />
</div>
);
}
}
export default Header;
从这篇文章中得到了想法。:Images not showing in PhoneGap Build application