简体   繁体   中英

EditableGrid loadXML

I am using EditableGrid's loadXML(URL) or loadJSON(URL) to fetch data from oracle.

I've realized that EditableGrid will generate a GET request with a token ID added to the end of my URL .

So the request url became url&1478799713810

And my server side script will return an error message as follow.

Missing '=' in query string or post form.

That is because server script, to be more specific, I am using PL/SQL via Apache PL/SQL Gateway instead of PHP.

I guess, php will automatically take care of that token, but pl/SQL's stored procedure won't recognize that extra parameter.

is there a way to stop EditableGrid from adding any extra or is there a way for pl/SQL to ignore or take that extra ampersand and token number?

我在网址末尾添加了#,这是一个终止网址的非法网址字符,这样做后,我的mod pl / sql忽略了#之后的内容。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM