我使用$ .ajax函数将json数据发送到serverside函数。
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,但找不到相同的内容。)
谢谢,
Vineet
答案 0 :(得分:4)
“如何访问服务器端的数据”与jquery无关,而与服务器端Web框架无关。
您需要从请求对象中提取数据;这里的web2py文档在这里:http://web2py.com/book/default/chapter/04#request