coding4
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<script src="https://cdn.bootcss.com/jquery/1.11.1-beta1/jquery.js"></script>
</head>
<body>
	<script>
		var host = "http://test.idata3d.com:18080";

		var data = {
			username: "user",
			password: "user"
		};
		
		$.ajax({
			url: host+"/login",
			type: "post",
			data:$.param(data),
			contentType: "application/x-www-form-urlencoded;charset=utf-8;",
			async:true
		})

		var param = {
			groupList:[\'北汽\'],
			brandList:[],
			seriesList:[],
			carTypeList:[],
			carSegmentList:[],
			carSubSegmentList:[],
			luxuryList:[],
			energyList:[]
		};
		$.ajax({
			url: host+"/market/showSelectOption",
			type: "post",
			data:param,
			success: function(data){
				debugger;
			},
			error: function(data){
				debugger;
			}
		})
	</script>
</body>
</html>

  

分类:

技术点:

相关文章:

  • 2021-11-01
  • 2021-11-20
  • 2021-06-15
  • 2021-08-23
  • 2022-01-22
  • 2022-12-23
  • 2021-11-27
猜你喜欢
  • 2022-12-23
  • 2021-12-12
  • 2021-05-13
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案