我如何獲得在我的控制器中發送?這是什麼,我已經嘗試了:代碼點火器從視圖到控制器獲取ajax值
阿賈克斯
$.ajax({
type: "POST",
url: "example/name",
data: send,
success: function(value) {
}
});
控制器
class Example extends CI_Controller {
function name() {
$this - > post(send);
}
}
是什麼'send'變量? – dfsq 2013-03-23 08:23:35
@dfsq:它有一個字符串作爲內容。如何發送ajax值並在控制器中進行檢索。 – ram 2013-03-23 08:25:32
你確定控制器上有一個名爲'post'的函數嗎?我希望你需要獲取'POST'值,請使用'$ this-> input-> post('field_name')' – Red 2013-03-23 09:31:37