Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$http.post()我在将数据从 AngularJS 传递到 JAVA 中的 Action 类时遇到了麻烦。
$http.post()
我的动作课没有被调用。
控制器.js
AuthenticateLogin.java
您缺少操作扩展。并且可能是命名空间。
它应该是
$http.post('AuthenticateLogin.action', data)
或者
$http.post('/AuthenticateLogin.action', data)