작은 프로그램에서view를 가져오는 동적 고도 채우기

1203 단어
wx.createSelectorQuery().select('#box').boundingClientRect(function (rect) {
      width = rect.width
      height = rect.height
      top = rect.top
    }).exec()

위와 같이 id가box인view를 받았고, 넓고 높은 속성을 얻었습니다. 이 코드는 onReady 함수에 두어야 합니다
주의: 이view의 넓이가 내용에 따라 달라진다면, 이렇게 얻은 넓이가 렌더링이 완료되기 전의 값일 수도 있습니다. 애플릿 자체의 버그인지 아닌지는 알 수 없습니다. 해결 방안은 타이머를 가져오는 것입니다. 아래와 같습니다.
setTimeout(() => {
      let _this = this
      wx.createSelectorQuery().select('#container-title').boundingClientRect(function (rect) {
      width = rect.width
      height = rect.height
      top = rect.top
    }).exec()
    },300)

 
전재 대상:https://www.cnblogs.com/jane2160/p/11307217.html

좋은 웹페이지 즐겨찾기