gpt4 book ai didi

java - 从 Sessionbean 调用函数并使用 angularjs 填充表

转载 作者:太空宇宙 更新时间:2023-11-04 12:04:57 25 4
gpt4 key购买 nike

我有两个问题:

  1. 我不知道如何使用 angularJS 在 html 页面中调用 java 类函数。

  2. 我需要在使用按钮后将其禁用。

我的地址是这样的:http://localhost:8080/CreditCardWEB/rest/cc/init

我的类里面有这个:

CardBean.java

@GET
@Path("/init")
public void init() {
Student s = new Student(1, "Pera", "Peric");
em.persist(s);
s = new Student(2, "Pera2", "Peric2");
em.persist(s);
s = new Student(3, "Pera3", "Peric3");
em.persist(s);
}

在我的indexStud.html页面中,我有一个按钮:

<button ng-click="initStud()">Init Student</button>

在我的controllers.js中我遇到了问题,但我不知道该怎么做:

$scope.initStud = function() {
//call the function from Cardbean.java
//disable the button after he is used
}

最佳答案

好的,我找到了问题 1 的答案......这就是它

        $scope.initStud = function() {
$http.post('http://localhost:8080/CreditCardWEB/rest/cc/init').success(
function(data) {
});
}

controllers.js 文件中需要的并且 Cardbean.java 文件中第一行的 @GET 必须更改为 @POST

关于java - 从 Sessionbean 调用函数并使用 angularjs 填充表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40469135/

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