我正在从客户端系统将文件上传到我的服务器。我击中的地方是,
这是html代码,
<input type="file" name="fileCarRes" id="fileCarRes" size="10" />
并使用此 jquery ajax 请求,我将此文件带到另一个 php 文件,然后使用 PHP 函数我将上传文件。我正在使用的 Jquery 代码是,
file = $('#fileCarRes').val();
url="careers.php";
$.post
(
url,
{
'act' : 'file',
'file' : file
},
function (responseText)
{
alert(responseText);
},
"html"
);
In php file
if(isset($_POST['act']) && $_POST['act'] == 'file')
{
$file = $_POST['file'];
$extension = end(explode(".", $_FILES["file"]["name"]));
} etc...
在 PHP$_FILES["file"]["name"]
中用于从 html 文件中获取文件。现在我发送和 ajax 查询而不使用<form>
. 所以我不知道,如何将文件路径映射到这个 PHP 函数。我在 MVC 架构中工作。
'提前致谢 !!'