4

我正在使用带有 Javascript 的 Spring MVC、example.jsp 文件。
我已经坚持了很长时间。

是否可以使用 Javascript 将新数据从 DB 加载到 HTML 表中而不刷新整个页面?

我只是不希望在带有某些事件的新数据加载到表中时替换整个页面。

4

2 回答 2

3

如果您想使用 JavaScript 重新加载页面的一部分,基本上是 AJAX。
这就是你应该这样做的方式。

客户端

假设您使用jQuery作为 JavaScript 框架。
您需要在客户端使用jQuery.ajax()

var successHandler = function( data, textStatus, jqXHR ) {
  // After success reload table with JavaScript
  // based on data...
};

var errorHandler = function( jqXHR, textStatus, errorThrown ) {
  // Error handler. AJAX request failed.
  // 404 or KO from server...
  alert('Something bad happened while reloading the table.');
};

var reloadData = function() { 
  // Process your request
  var request = new Object();
  request.id = 'some id'; // some data

  // Make the AJAX call
  jQuery.ajax({
    type       : 'POST',
    url        : 'http://domain/context/reload-data-url',
    contentType: 'application/json',
    data       : JSON.stringify(request)
    success    : successHandler,
    error      : errorHandler
  });
};

reloadData()当您需要重新加载表时调用该函数。

服务器端

您正在使用 Spring MVC。然后你的控制器应该看起来像:

 // Spring MVC Controller
 @Controller
 public class ReloadDataController {

   // Request Mapping
   @RequestMapping(value = '/reload-data-url', method = RequestMethod.POST)
   @ResponseBody
   public ResponseEntity<String> processReloadData(@RequestBody String body) {

     // Get your request
     JSONObject request = new JSONObject(body);
     String id = request.getString("id"); // Here the value is 'some id'

     // Get the new data in a JSONObject
     JSONObject response = new JSONObject();
     // build the response...

     // Send the response back to your client
     HttpHeaders headers = new HttpHeaders();
     headers.add("Content-Type", "application/json; charset=utf-8");
     return new ResponseEntity<String>(response.toString(),
                headers, HttpStatus.OK);
   }

 }

您不必使用 JSON,但我认为这是最好的方法。希望这会帮助你。

于 2012-09-17T12:31:25.510 回答
0

我也被困住了,然后我终于找到了这个使用的解决方案ModelAndView See this solution it may work Thymeleaf table update without page reload

我的回答会迟到,但有人可能会帮助......

于 2021-09-15T15:12:59.137 回答