>  기사  >  웹 프론트엔드  >  uniapp에서 요소를 얻는 방법

uniapp에서 요소를 얻는 방법

coldplay.xixi
coldplay.xixi원래의
2020-12-15 16:10:2313208검색

특정 요소를 가져오는 Uniapp 방법: 1. 양식 확인, 비어 있는지 확인, 코드는 [if (this[`${x}`] == '') {return false}]; 모두 필수 입력할 필드 목록, 코드는 [const query = uni.createSel]입니다.

uniapp에서 요소를 얻는 방법

이 튜토리얼의 운영 환경: 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 == &#39;2&#39;){
                            let x = this.model_list[i].dataset.model
                            console.log(this[`${x}`])
                            // if(){}
                            //验证是否为空
                            if (this[`${x}`] == &#39;&#39;) {
                                return false
                            }
                        }
                    }
                }
                return true
            },
            //获取所有必填项的列表
            get_must() {
                console.log("**************************------------------******************************")
                const query = uni.createSelectorQuery().in(this);
                query.selectAll(&#39;.must&#39;).fields({
                    dataset: true,
                }, data => {
                    this.model_list = data
                    console.log(data)
                }).exec();
                
                console.log("**************************------------------******************************")
                return true
            },

관련 무료 학습 권장사항: php 프로그래밍(동영상)

추천(무료): uni-app 개발 튜토리얼

위 내용은 uniapp에서 요소를 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.