问题描述
在网页上我有两种形式。第一个创建静态,第二个动态创建(根据请求)
两个表单对服务器进行相同的ajax调用。
两者都使用相同的javaScript例程来进行调用。
两者都调用相同的服务器端应用程序。
我存储了变量/数组中的数据appData这是我JSON编码的。
在服务器端应用程序中,我查找JSON元素appData并解码它。
当动态表单发出请求时,
appData不存在。
这是我的代码和屏幕截图,代码停止显示变量的内容。
这是我的ajax例程
On the web page I have two forms. The first created statically, the 2nd created dynamically (upon request)
Both forms make the same ajax call to the server.
Both use the same javaScript routines to make the call.
Both call the same server side app.
I store the data in a variable/array "appData" which I JSON encode.
On the server side app, I look for the JSON element "appData" and decode it.
appData is not present when the dynamic form makes the request.
Here is my code and screen shots of where the code was halted to show the content of the variables.
This is my ajax routine
这篇关于为什么有时会发送变量而有时不发送?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!