0

我正在开发一个 Blackberry OS 5 + 应用程序,我需要发送一些带有图像的数据。

为了开发这个应用程序,我使用 HTML5、jQuery 和 Webworks SDK。

使用这样的表格:

<form  method="post" action="htt://doamin.com/fool/problem" >
    <input type="text" name="post[tipo]" value="7" />
    <input type="text" name="post[lat]" value='4312.143234388223E7' />
    <input type="text" name="post[lon]" value='2112337733237.0' />
    <input type="text" name="post[desc]" value='axxxx.' />
    <input type="text" name="post[riesgo]" value='1' />
    <input type="text" name="post[direccion]" value='Cxxx' />
    <input type="text" name="post[municipio]" value='zzz' />
    <input type="text" name="post[pais]" value='ES' />
    <input type="text" name="post[idCobranded]" value='1' />
    <input type="text" name="post[esRegistro]" value='1' />
    <input type="text" name="post[origen]" value='2' />
    <input type="text" name="post[version]" value='1.1.0' />
    <input type="text" name="post[email]" value='email@email.com' />
    <input type="text" name="post[password]" value='ba65b0d6c8c76cabb343fccfdeba053a' />
    <input type="text" name="post[nombre]" value='asdsad' />
    <input type="text" name="post[codigoPostal]" value='213218222' />
    <input type="text" name="post[idioma]" value='1' />
    <input type="submit" class="submit" value="Send"/>
</form>

这是我第一次这样做,我不知道该怎么做。

如何使用 jQuery 将带有图像的表单作为多部分表单发送?

顺便说一句,我找到了 $_FILE,它是什么?

4

1 回答 1

1

$_FILE 是一个 php 数组,用于存储您上传的所有数据信息。由于您没有使用 PHP,因此您不必担心它。但是,如果您有兴趣,可以在此处找到有关它的更多信息

http://www.php.net/manual/en/reserved.variables.files.php

您是否查看过 jquery $.ajax 函数以将表单信息发送到您的网络服务?您也可以使用 $.post。另外,对于表单中的每个输入字段,我建议您添加一个 ID 字段,因为您将处理 javascript :)

于 2012-08-01T15:27:37.073 回答