我正在使用 JQuery 中的 AJAX 编写一个脚本,该脚本将来自 exp_actions 的 action_id 作为我需要在我的 mcp 文件中执行的方法的目标 URL。引用是静态的。可以通过在视图中以类似于以下方式进行 PHP 调用来找到 ACT 值:
$aid =$this->EE->cp->fetch_action_id('Class_name', 'method_name');
?
我的页面目前看起来是这样的:
<script type= "text/javascript">
$(document).ready(function() {
$('form').change(function(e){
var data = $(this).serializeArray();
console.log(data);
$.post(
<? echo'http://ourwebsite.com/ee/admin.php?ACT=44&id=4 ,';?>
data,
function() {
console.log(this);
}
)
});
});
提前致谢!