我的应用程序中有三个控制器:
在我的/ forms / designpage中,我将数据发布为:
$.ajax({
type: "POST",
url: "./attributes/untitledfieldname",
data: "sequence_no = " + counter + " & type = " + type,
success: function(msg){
}//success
});//ajax
由于我在用户控制器中进行了无名字段操作,因此在URl中我给出了./attributes/untitledfieldname。但这不起作用。
我更改了网址。实际上,我的表格/属性/无名字段名称 form是m base ctrller,属性是我的另一个ctrller。现在我把直接URL。现在它有效。
答案 0 :(得分:0)
使用类似
的内容// ...
url: "<?php echo $html->url('/controller/action'); ?>",
// ...
另外,请考虑使用$ .post而不是$ .ajax