uniapp은 페이지 주소 점프를 어떻게 구현합니까?

coldplay.xixi
풀어 주다: 2023-01-13 00:44:09
원래의
11207명이 탐색했습니다.

uniapp에서 페이지 주소 점프를 구현하는 방법: 1. navigator 태그를 사용합니다. 코드는 []입니다. @tap 】이벤트 점프.

uniapp은 페이지 주소 점프를 어떻게 구현합니까?

이 튜토리얼의 운영 환경: 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: &#39;../info/info?newsid=&#39;+newsid,
                    success: res => {},
                    fail: () => {},
                    complete: () => {}
                });
            }
        }
</script>
로그인 후 복사

관련 무료 학습 권장 사항: 프로그래밍 비디오

위 내용은 uniapp은 페이지 주소 점프를 어떻게 구현합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿