What I bring to you this time is how to implement springmvc to extract data after receiving the array submitted by jquery. This article will give you a good analysis.
The specific code is as follows:
var selectedUsers = $('#users').tagbox('getValues'); if (selectedUsers.length > 0) { $.post(appPath + "/role/users/add/", { 'systemID' : $('#systemID').combobox('getValue'), 'roleID' : roleID, 'users' : selectedUsers }, function(result, status) { if (result == 'false') { $.messager.show({ title : '角色管理', msg : '添加用户发生异常' }); } // 刷新被选择的用户 getSelectedRoleUsers(); });
selectedUsers What is obtained is an array, submitted under the name users
@PostMapping("/users/add/") @ResponseBody public String addUsers(String systemID, String roleID, @RequestParam(name = "<SPAN style="COLOR: #ff0000">users</SPAN><SPAN style="COLOR: #ff0000">[]</SPAN>") String[] users) { }
I believe you have mastered the method after reading the above introduction. For more exciting information, please pay attention to the php Chinese website Other related articles!
Related reading:
How can JS click to jump to the logged-in personal mailbox
##require.js Detailed introduction to usage
There are several ways to implement chain operations in PHP
The above is the detailed content of How to implement springmvc to extract data after receiving the array submitted by jquery. For more information, please follow other related articles on the PHP Chinese website!