我正在測試$ get方法,似乎無法讓它工作。我試圖在我的控制器(CodeIgniter)中調用一個函數,該函數僅返回一個字符串,然後在視圖中顯示該字符串。問題是我得到[object Object]
在字符串"test"
應該是..這裏是代碼。與jQuery呼叫控制器功能
控制器 - 公共
public function get_calendar(){
return "habr";
}
查看
//some code
calendarEvents = $.get("<?php echo site_url().'/public/get_calendar';?>");
//more code
html += calendarEvents;
//code that displays the html in my div
我用的是$.get
這樣過,但用於檢索視圖的一部分和顯示的目的它將此function(data) {$("#div").html(data);});
與GET語句一起使用。
我期待着您的建議,非常感謝他們。謝謝。
請在你的問題你的鏈接的情況下,相關部分的外部資源消失。 – TimWolla