我正在将 Html 页面加载到面板中,在那个 html 页面中 html 文件(上传文件)就在那里。每当我上传一些文件(文档、图像等)并保存 html 按钮时.. 我想将该文件保存到 SAVED_DOCUMENTS 文件夹中的项目中,以及该路径到数据库..
$('input[type="file"]').each(function () {
completeids.push($(this).attr('id'));
completevalues.push($(this).attr('value'));
completetype.push('FILE');
completeselected.push('no');
});
找到文件的值后,我想将其转储到 SAVED_DOCUMNETS 文件夹...你能给出一些建议来处理这个..