gpt4 book ai didi

javascript - 在 php 中获取 FileTransfer 上传选项变量

转载 作者:行者123 更新时间:2023-11-30 16:45:14 25 4
gpt4 key购买 nike

我正在使用 cordovaFileTransfer 插件。使用下面的代码,我还将选项变量发送到我的 upload.php 文件。

var options = {
fileKey: "file",
channel: $scope.channel,
fileName: $scope.filename ,
chunkedMode: false,
mimeType: "image/jpg"
};

$cordovaFileTransfer.upload(server, filePath, options).then(function(result) {
...

如何从我的 php 文件中检索“ channel ”值(在选项变量中)。在我的 php 文件中,我尝试了 $channel = $_POST["channel"]; 但这不起作用。

最佳答案

没有 channel 选项,不能添加不存在的选项。

要将值传递给服务器,您必须使用 params 选项:

var parameters = {};
parameters.channel = $scope.channel;

var options = {
fileKey: "file",
channel: $scope.channel,
fileName: $scope.filename ,
chunkedMode: false,
mimeType: "image/jpg",
params : parameters
};

现在,您应该可以通过 $_POST["channel"] 获取 channel 参数了

关于javascript - 在 php 中获取 FileTransfer 上传选项变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31348531/

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