这是 email_list 管理控制器页面中的代码:
$idOfCourse = $this->request->data('courseId');
/* 在这两行中,我正在读取从 Js 页面发布的数据*/
$emailArray = $this->request->data('emailList');
这是对应JS中的ajax代码 `var data = { courseId : id, emailList: myArray }; //这里我用 2 个字段 courseID 和 emailList 格式化 JSON 格式
$.ajax({ //here I am giving the call
type:"POST",
url :"/adata/admin/email_list",
data: { studentcoursemaildata : data, action : "/adata/admin/template1"}
}).done(function(){
window.location.href ="/admin/email/"; /*I am redirecting after the data is being fetched */
});
`