]입니다. 2. [@tap]을 사용합니다. 점프하는 이벤트."/> ]입니다. 2. [@tap]을 사용합니다. 점프하는 이벤트.">
uniapp에서 페이지 주소 점프를 구현하는 방법: 1. navigator 태그를 사용합니다. 코드는 [d5231c3ec813bfcaeaa0bf47768ea406]입니다. @tap 】이벤트 점프.
이 튜토리얼의 운영 환경: windows7 시스템, uni-app2.5.1 버전, thinkpad t480 컴퓨터.
추천(무료): uni-app 개발 튜토리얼
uniapp 페이지 주소 점프 구현 방법:
1.navigator 태그
<navigator url="../hello/hello" open-type="navigate"> <view class="struct"> I am {{student.age}} yeas old </br> I have skills such as {{student.skill[0]}},{{student.skill[1]}} </view> </navigator>
2.@tap 이벤트 점프
<view class="uni-list-cell" hover-class="uni-list-cell-hover" v-for="(item,index) in news" :key="index" @tap="openinfo"> <view class="uni-media-list-text-top">{{item.title}}</view> </view> <script> methods: { openinfo(e) { console.log(e) var newsid = e.currentTarget.dataset.newsid ; uni.navigateTo({ url: '../info/info?newsid='+newsid, success: res => {}, fail: () => {}, complete: () => {} }); } } </script>
관련 무료 학습 권장 사항: 프로그래밍 비디오
위 내용은 uniapp은 페이지 주소 점프를 어떻게 구현합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!