0

我正在尝试使用 jquery 解析 xml。我的项目的目的是通过获取标签的数量来动态创建按钮。例如:如果我有两个 Scenario 标签,我需要在运行时创建 2 个按钮。

问题是我不知道如何从他们的 url 中检索图像并将它们存储在一个文件夹中。

此外,如果有一种方法可以在本地存储 xml,因为我有 xml 的链接,这样即使我没有互联网连接,我的应用程序也可以获取本地可用的数据

PS我正在使用html和jquery。

我的 XML 如下:

    <root>
<home src="images/pic1.jpg"/>
<Scenario value="Supply Chain Management">
<Scene value="Supply Chain Info Center">
<valProps src="http://10.52.49.152:8080/visiondemo/sample.jpg">Supply Chain Info Center Content1</valProps>
<valProps src="http://10.52.49.152:8080/visiondemo/sample.jpg">SPIC - Content2</valProps>
<valProps src="http://10.52.49.152:8080/visiondemo/sample.jpg">SPIC - COntent3</valProps>
</Scene>
<Scene value="SCPM">
<valProps src="http://10.52.49.152:8080/visiondemo/sample.jpg">SCPM_Content1</valProps>
<valProps src="http://10.52.49.152:8080/visiondemo/sample.jpg">SCPM_Content2</valProps>
</Scene>
</Scenario>
<Scenario value="Supply Chain Management2">
<Scene value = "Supply Chain"></Scene>
</Scenario>
</root>
4

1 回答 1

0

为此使用file_get_contentfile_put_contentphp 函数。

<?php
   $file = 'url_image_file';
   // Open the file to get existing content
   $current = file_get_contents($file);
   // Append image to the file
   $current .= "new_file_name";
   // Write the contents back to the file
   file_put_contents($file, $current);
?>
于 2013-02-25T06:30:53.167 回答