2

我想使用 PhoneGap API 上传照片。FileTransfer 对象基本上是我想要的,因为我想上传一张照片,但我想包含一些关于用户的基本信息,例如他们的用户 ID,以便我可以将其存储为他们的。我的代码如下,这基本上来自PhoneGap API,但有我的补充

<html><head><script>function uploadPhotoandID(imageURI, userID) {
        var options = new FileUploadOptions();
        options.fileKey="file";
        options.fileName=imageURI.substr(imageURI.lastIndexOf('/')+1);
        options.mimeType="image/jpeg";

        var params = new Object();
        params.value1 = "test";
        params.value2 = "param";

        options.params = params;

        var ft = new FileTransfer();
        ft.upload(imageURI, "http://some.server.com/upload.php", win, fail, options);
        ft.upload(userID, "http://some.server.com/upload.php", win, fail, options);
    }</script></head>
    <body><button onclick="uploadPhotoandID(imageURI, userID)">Click me</button></body</html>

我是否需要像这样在 HTML 中的函数中使用这些参数?即使它们在标头的脚本中,它是否能够检索这些变量?

如果您发现任何其他错误,请告诉我!

4

1 回答 1

4

对,所以您要做的就是:

var params = new Object();
params.value1 = "test";
params.value2 = "param";

options.params = params;

你会:

var params = new Object();
params. userID = userID;

options.params = params;

现在您不必两次调用“上传”。userID 参数可用作:

$_POST["userID"]

在您的 PHP 脚本中。

于 2012-06-01T13:21:35.187 回答