20 분포 식 전자상거래 프로젝트 - 상가 입주 신청

코드 가 Github 주소 로 업로드 되 었 습 니 다:https://github.com/ylw-github/pingyougou.git 주요 기능: 7dd367d056e 4929670012a 059cd52db4333f6b 87
전단
register. html 를 수정 하여 JS 도입
 
 

 
 

지령


바 인 딩 폼 (부분 코드)

seller Controller. js 를 수정 하여 저장 에 성공 한 후 로그 인 페이지 로 이동 합 니 다.
	//   
			$scope.save = function() {
				//    
				sellerService.add($scope.entity).success(function(response) {
					if (response.success) {
						//          
						location.href = "shoplogin.html";
					} else {
						alert(response.message);
					}
				});
			}

귀속 "입주 신청" 버튼
입 주 를 신청 하 다

백 엔 드 코드
백 엔 드 코드 를 수정 하고 기본 상 태 를 0 으로 설정 하 며 insert Selctive 를 사용 하여 저장 할 수 있 습 니 다.
/**
	 *   
	 * @param seller
	 * @return
	 */
	@RequestMapping("/add")
	public PygResult add(@RequestBody TbSeller seller){
		try {
			//       
			BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
			String newpwd = passwordEncoder.encode(seller.getPassword());
			//            
			seller.setPassword(newpwd);
			//  
			sellerService.add(seller);
			return new PygResult(true, "    ");
		} catch (Exception e) {
			e.printStackTrace();
			return new PygResult(false, "    ");
		}
	}

좋은 웹페이지 즐겨찾기