如何将 JavaScript 值传递给 JSP 中的 Scriptlet?
谁能告诉我如何在 JSP 中将 JavaScript 值传递给 Scriptlet?
Can anyone tell me how to pass JavaScript values to Scriptlet in JSP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
我可以提供两种方式,
a.jsp,
b.jsp,
I can provide two ways,
a.jsp,
b.jsp,
您的 javascript 值在客户端,您的 scriptlet 在服务器端运行。因此,如果您想在 scriptlet 中使用 javascript 变量,则需要提交它们。
要实现此目的,请将它们存储在输入字段中并提交表单,或者执行 ajax 请求。我建议你研究一下 JQuery。
Your javascript values are client-side, your scriptlet is running server-side. So if you want to use your javascript variables in a scriptlet, you will need to submit them.
To achieve this, either store them in input fields and submit a form, or perform an ajax request. I suggest you look into JQuery for this.
很简单,你不能!
JSP 是服务器端,javascript 是客户端,这意味着在评估 javascript 时不再有“jsp 代码”。
simple, you can't!
JSP is server side, javascript is client side meaning at the time the javascript is evaluated there is no more 'jsp code'.
我将这个问题解释为:
“谁能告诉我如何为 JavaScript 传递值以便在 JSP 中使用?”
如果是这种情况,该 HTML 文件会将服务器计算的变量传递给 JSP 中的 JavaScript。
I've interpreted this question as:
"Can anyone tell me how to pass values for JavaScript for use in a JSP?"
If that's the case, this HTML file would pass a server-calculated variable to a JavaScript in a JSP.
您不能这样做,但您可以执行相反的操作:
在您的 jsp 中您可以:
访问 js 中的变量:
You cannot do that but you can do the opposite:
In your jsp you can:
Access the variable in the js:
如果您说要将 javascript 值从一个 jsp 传递到 javascript 中的另一个 jsp,则使用 URLRewriting 技术将 javascript 变量传递到下一个 jsp 文件,并在请求对象的下一个 jsp 中访问该变量。
否则你不能做到这一点。
If you are saying you wanna pass javascript value from one jsp to another in javascript then use URLRewriting technique to pass javascript variable to next jsp file and access that in next jsp in request object.
Other wise you can't do it.
正如您所期望的那样,这是不可能的。但你可以做这样的事情。将您的 java 脚本值传递给 servlet/控制器,进行处理,然后根据您的要求将该值放入某个对象中,从而将该值传递给 jsp 页面。然后您可以根据需要使用该值。
Its not possible as you are expecting. But you can do something like this. Pass the your java script value to the servlet/controller, do your processing and then pass this value to the jsp page by putting it into some object's as your requirement. Then you can use this value as you want.
这是为其他登陆这里的人准备的。
首先,您需要一个 servlet。我使用了@POST 请求。
现在,在您的 jsp 文件中,您有两种方法可以执行此操作:
使用 AJAX 的复杂方法,以防您不熟悉 jsp:
您需要使用要在 java 类中使用的 javascript var 进行发布,并使用 JSP 从请求中调用 java 函数:
使用 JSP 的简单方法:
当然,在这种情况下,您仍然必须从 JS 加载输入值(到目前为止我还没有找到另一种加载它的方法)。
This is for other people landing here.
First of all you need a servlet. I used a @POST request.
Now in your jsp file you have two ways to do this:
The complicated way with AJAX, in case you are new to jsp:
You need to do a post with the javascript var that you want to use in you java class and use JSP to call your java function from inside your request:
The easy way just with JSP:
Of course in this case you still have to load the input value from JS (so far I haven't figured out another way to load it).
我使用了 scriptlet、声明和表达式标签的组合...
上面的代码在我的例子中工作得完全正常。
I Used a combination of the scriptlet, declaration, and expression tags...
The above code is working completely fine in my case.