我正在尝试在两个文件之间发送信息。
第一个文件:
function findDepartment(codePostal,commune,deptId)
{
if (codePostal.length==5)
{
var fichier1 = "inclusions/ajax-cp-departement.php";
$.ajax({
url: fichier1,
data: {codePostal: codePostal, commune: commune},
success: function(response) {
$(deptId).val(response);
},
error: function(xhr) {
alert('Error! Status = ' + xhr.status);
}
});
}
}
第二档:"包含/ ajax-cp-departement.php"
$commune = $_REQUEST['commune'];
$commune = trim($commune);
$codePostal= $_REQUEST['codePostal'];
$codePostal= trim($codePostal);
if (strlen($commune)>0 && strlen($codePostal)>0)
{
// Liste les communes du département demandé
$query = "SELECT departement
FROM commune_zone
WHERE commune LIKE '$commune'
AND code_postal LIKE '$codePostal'
LIMIT 1";
}
这就是我调用我的功能的方式:
findDepartment(monCp,$("#ville_projet").val(), "#departement_projet");
没有检测到commune变量,因为它发送一个空结果,当我删除commune它工作时,任何想法为什么我有这个问题?