2012年7月26日 星期四
CodeIgniter json
實做到了用json,才發現,asp.net真的做了不少事
從CI中來實做時才知道自己要多做這麼多功,不過還
是把自己的過程先記下來,以防止年紀大的我,忘了
這中間的過程
1.Controller
要把資料往前送有兩方式 → 陣列 或 → 物件
陣列要是有具名的那種方式
EX:
$jsn = array(
"Message" => $albumName . "has been removed from your shopping cart."
,"CartCount" => $this->cart_summary()
,"CartTotal" => $cartTotal
,"ItemCount" => 0
,"DeleteId" => $p_id
);
物件則是
$jsn = new jsn_obj;
$jsn->Message = $albumName . "has been removed from your shopping cart.";
$jsn->CartCount = $this->cart_summary();
$jsn->CartTotal = $cartTotal;
$jsn->ItemCount = 0;
$jsn->DeleteId = $p_id;
2.在Controller 中,把資料丟山去前,再加上這兩段指令
$this->output
->set_content_type('application/json')
->set_output(json_encode($jsn));
而前端上的使用就看你如何發揮jquery
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言