大家好,
我在我的 js 文件中有:
function sendDataToPhp()
{
theUrl = 'myfile.php';
params = '';
params += 'function=sendData';
params += '&myfield='+someVariableForMyField;
$.ajax ({
url: theUrl,
data: params,
type: "POST",
async:false,
success: function (data, textStatus)
{
}
});
}
然后在 myfile.php
if (isset($_REQUEST['function']))
{
$function = $_REQUEST['function'];
}
switch ($function) {
case 'sendData':
//code
break;
default:
//code
}
有了这个,我将代码流发送到交换机的 sendData 案例。
现在在成功内部,在 ajax() 中我需要将代码流发送到 switch 的默认情况。我怎样才能做到这一点?
太感谢了!