假设我有一个PlainObject:
formData:
completed: null
limit: "10"
然后在ajax调用中使用:
$.ajax({
type: 'post',
url: SomeEndpoint.php,
data: formData,
}).done(function (response) { do stuff }
SomeEndpoint.php中的POST值将所有值接收为空字符串:
$completed = $_POST['completed'] ?? null; // ""
$limit = $_POST['limit'] ?? null; // "10"
如何保留键入内容?如果端点验证变量是NULL还是Int / Bool,验证类型的最佳方法是什么?