python-$.ajax函数:发送json数据:在服务器端函数进行解析

我正在使用$.ajax函数将json数据发送到服务器端函数.

var jsonObjects = [{id:1, name:"amit"}, {id:2, name:"ankit"},{id:3,name:"atin"},{id:1, name:"puneet"}];

$.ajax({
     url: "{{=URL('myControllerName')}}",
     type: "POST",
     context: document.body,
     data: {students: JSON.stringify(jsonObjects) },
     dataType: "json",
     success: function(){
         alert('ok');
  }

});

在服务器端功能中,如何访问数据?

有人将grails的代码指定为:—

//this code is written in grails
import grails.converters.JSON;
List<JSON> students = JSON.parse(params.students) //students in request params is parsed to json objects and stored in the List
println "Student id: " + students[0].studentId    //first element of the students list is accessed as a map holding a key studentId

我想在python Web框架中执行此操作. web2py.

试图以params.students和request.students的身份访问它,但是没有运气.

访问已发送数据的正确语法是什么? (我检查了jQuery API,但找不到相同的代码).

谢谢,

藤蔓

解决方法:

你很困惑.

“如何访问服务器端的数据”与jquery无关,与服务器端的Web框架无关.

您需要从请求对象中提取数据;该web2py文档在这里http://web2py.com/book/default/chapter/04#request

相关文章

IE6是一个非常老旧的网页浏览器,虽然现在很少人再使用它,但...
PHP中的count()函数是用来计算数组或容器中元素的个数。这个...
使用 AJAX(Asynchronous JavaScript and XML)技术可以在不...
Ajax(Asynchronous JavaScript and XML)是一种用于改进网页...
本文将介绍如何通过AJAX下载Excel文件流。通过AJAX,我们可以...
Ajax是一种用于客户端和服务器之间的异步通信技术。通过Ajax...