am a newbie to grails and JQuery as well, I am having this issue with invoking a url, currently its invoked using tag like this:
(美元)
when this link is clicked the URL changes to /myapp/users/userEdit/"value of employeeid". why does the employeeId get appended in the URL like that
在控制器用户 Ed行动的定义如下:
def userEdit={
if(params.id!=null && params.id.toString().trim().length()>0){
log.info("Returning UserInstance whose employee Id: "+params.id)
def userInstance= Users.findByEmployeeid(params.id.toString().trim());
if (params.fromdate!=null && params.todate!=null && params.resourceId!=null) {
render(view:"actEdit",model:[userInstance:userInstance,fdate:params.fromdate,tdate:params.todate,resId:params.resourceId])
}
else {render(view:"actEdit",model:[userInstance:userInstance]) }
} }
基本检查假冒价值,使页数化。
现在,我试图从另一个网页上用jquery.ajax(电话)来援引用户Edit的行动。
function drillchart(empid){
var empid =empid
jQuery.ajax({
url: /myapp/users/userEdit +empid,
data:{
fromdate :fromdate,
todate :todate,
resourceId :res_id
},
dataType: html ,
timeout: 10000,
beforeSend: function() { jQuery( #userStatisticsDiv ).html(/spinner.gif)},
success: function(data) { window.location = myurl;}
});
问题是最新、最新和资源的数据参数。 因此,在行动过程中,伊德始终在其他方面。
如果我不是直接通过该呼吁的呼号,而是把它当作背心:在电话中,它打算适当传送的那部分数据。
我需要知道,我是如何援引适当的《欧洲权利宪章》并通过该呼吁中的所有参数的。