有一段代码:
if(DataEndpoint::isAjaxRequest()) {
if(isset($_POST['controller']) && !empty($_POST['controller']) && isset($_POST['action']) && !empty($_POST['action'])) {
$controllerName = $_POST['controller'];
$actionName = $_POST['action'];
if(class_exists($controllerName.'Controller')) {
$controller = new $controllerName.'Controller';
if(method_exists($controller, $actionName)) {
// if id's been passed
// if method signature accepts the parameter
// invoke... ?
}
}
}
} // if(DataEndpoint::isAjaxRequest()) {
我可以检查给定是否action
存在,但不知道to pass/invoke the action with
id 之类的附加参数如何(我们建议它是一个字符串,它是可选的)。我该如何解决这个问题?