我尝试使用 php 和 jquery 向 db 插入一行
我有这个代码
$.post('/json/management/AddArtistAjax',
{
"artistName": $("#nameSurnameID").val()
,
"Country": $("#country").val()
,
"bDate" : $("#demo1").val()
,
"dDate" : $("#demo2").val()
,
"bio" : $("#bioID").val()
},
function(response){
alert(response);
});
我可以将以上所有内容都发送到 php 端。但是,我无法将文件发送到 php 端
print_r($_FILES) 数组为空,为什么?