gpt4 book ai didi

java - Vaadin 和 js 函数

转载 作者:行者123 更新时间:2023-11-29 05:31:02 25 4
gpt4 key购买 nike

我想通过在 vaadin 代码中执行这个字符串来调用 js 函数:

String js = "function returnURL{" +
"return(window.location.href.replace(/(\\d+)$/, function(str, p1, p2) {" +
"return((Number(p1) + 1) + p2);" +
"}));" +
"}";

如何通过这种方式准确调用这个函数:

Page.getCurrent().getJavaScript().execute(javascript function);

最佳答案

你的js代码有点错误,你应该:

String js = "function returnURL(){" +  //Check the parens here
"return(window.location.href.replace(/(\\d+)$/, function(str, p1, p2) {" +
"return((Number(p1) + 1) + p2);" +
"}));" +
"}";

然后:

Page.getCurrent().getJavaScript().execute(js);

希望这对您有所帮助。干杯

关于java - Vaadin 和 js 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21069648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com