在soundcloud.com中,当我在搜索框中输入“a” - view-source - 并且客户端收到:XHR - method GET - size 714B
。
打开此链接,我有JSON文字:{"collection:......"}
(*)。
XHR size ~ 1,5KB
。 [> 714B相同的JSON文本]
我认为,如果使用codeigniter,会收到会话或cookie。我尝试了cookie或会话。但没有什么变化!
如何减少请求ajax帖子的大小? 希望有人能帮我解释一下。
谢谢!
Jquery的:
var m = {JSON text(*)}
$.ajax({
type:'POST',
url: test,
data: {m:m},
dataType : 'JSON',
success: function(data) {
//only receive data
log(data);},
});
控制器:
public function test(){
//{Json text (*) - same Json from soundcloud.com}
$result = $this->input->post('m',TRUE)
print_r($result);
}