使用codeginiter林作爲PHP框架,我想jQuery的數據後做我的方法之一.. 的方法聲明收件箱控制器內,併爲其取名爲讀例如:codeginiter jQuery的崗位清理數據網址
public function read($data){
//do somethin with $data
}
在我的javascript代碼我有這個
$.post('inbox/read', { somedatahere:value}, function.....);
當我用這種形式我得到這個帖子的網址www/inbox/read?somedatahere=value
,但我真的希望是這樣... www/inbox/read/value...
這是我怎麼能設法解決部份問題,但不花哨......
$.post('inbox/read/' + value, {}, function.....);
WWW /收件箱/讀?somedatahere =價值,這是不是發佈,這是得到,你的問題是不是在這裏..試圖找到它從另一個地方.. –