특정 요소를 가져오는 Uniapp 방법: 1. 양식 확인, 비어 있는지 확인, 코드는 [if (this[`${x}`] == '') {return false}]; 모두 필수 입력할 필드 목록, 코드는 [const query = uni.createSel]입니다.
이 튜토리얼의 운영 환경: windows7 시스템, uni-app2.5.1 버전, Dell G3 컴퓨터.
특정 요소를 가져오는 Uniapp 방법:
//表单验证 from_judge() { if(this.get_must()){ for (let i = 0; i < this.model_list.length; i++) { console.log(this.model_list[i]) if(this.model_list[i].dataset.must == '2'){ let x = this.model_list[i].dataset.model console.log(this[`${x}`]) // if(){} //验证是否为空 if (this[`${x}`] == '') { return false } } } } return true }, //获取所有必填项的列表 get_must() { console.log("**************************------------------******************************") const query = uni.createSelectorQuery().in(this); query.selectAll('.must').fields({ dataset: true, }, data => { this.model_list = data console.log(data) }).exec(); console.log("**************************------------------******************************") return true },
관련 무료 학습 권장사항: php 프로그래밍(동영상)
추천(무료): uni-app 개발 튜토리얼
위 내용은 uniapp에서 요소를 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!