0

我正在将 Kendo UI 与我的应用程序集成,该应用程序是基于 CodeIgniter 框架的 PHP。我能够从控制器中检索数据并显示在剑道网格中,但我无法将选定的网格数据发送到我的控制器以执行其他操作,即。创建、销毁或更新。我在谷歌上搜索了这个,但没有得到任何有用的帖子。

因此,如果有人知道如何从客户端发送数据并在服务器端控制器上接收,请回复我。我将非常感激。

4

1 回答 1

0

看法

read: {
      url: 'http://urdomain/ursystemname/index.php/schoolC/getjson',
      datatype: 'json',
      type: 'GET'
   },

控制学生C

public function getjson()
    {
        header("Content-type: application/json");
        echo $this->SchoolM->get_allJsonData();
    }

模范学校M

function get_allJsonData()
    {
        $arr = array();
        $this->db->from('school');
        $this->db->order_by("school_name", "asc");
        $query = $this->db->get();
        foreach($query->result_object() as $rows )
        {
            $arr[] = $rows;
        }
        return "{\"data\":" .json_encode($arr). "}";
    }

我希望它有帮助

于 2013-05-22T16:57:43.330 回答