标签: yii2 yii2-model
如何使用两种行为覆盖ActiveRecord $.ajax({ type: "POST", dataType: "json", url: "fetchChar.php", data: {id:userId}, success: function(data) { document.write(JSON.stringify(data)); } }); 方法? 我在模型中使用了两个行为,每个行为都覆盖了find()方法。
$.ajax({ type: "POST", dataType: "json", url: "fetchChar.php", data: {id:userId}, success: function(data) { document.write(JSON.stringify(data)); } });
谢谢