level 1
async: {
enable: true,
url: "tctojosn.ashx",
type: "get",
autoParam: ["id", "name=n"],
dataFilter: filter
},……
请问如果给所传的参数值 加上escape()编码。
比如 说 tctojosn.ashx?id=escape(id)&name=escape(name)
我想 知道 在什么地方 加 escape()
2012年12月27日 09点12分
1
level 11
为何一定要用 get 方式,换成post 方式应该不用操心这种问题了
2012年12月27日 09点12分
2
level 1
谢谢能告诉我 post 怎么写呢 ?
async: {
enable: true,
url: "tctojosn.ashx",
type: "get",
autoParam: ["id", "name=n"],
dataFilter: filter
},……
2012年12月27日 09点12分
3