下面是我对控制器进行的 jquery ajax 调用
jQuery.post('index.php',{
'option' : 'com_test',
'controller': 'product',
'task' : 'loadColors',
'format' : 'raw',
'design_id' : design_id,
'collar_id' : collar_id
},function(result){
}).success(function(result) {
alert(result);
}).error(function() {
jQuery('div#color_wrapper h1').text('ERROR WHILE LOADING COLORS');
}).complete(function(result) {
alert(result);
});
在我的控制器中有一个功能如下。
function loadColors()
{
die;
}
我的问题是即使我die
在 loadColors() 中使用过,正在执行成功和完整的功能。我想要的是一个函数,如果我们从 loadColors() 返回一些东西就会运行?我怎样才能完成它?