]입니다. 2. [@tap]을 사용합니다. 점프하는 이벤트."/> ]입니다. 2. [@tap]을 사용합니다. 점프하는 이벤트.">

 >  기사  >  웹 프론트엔드  >  uniapp은 페이지 주소 점프를 어떻게 구현합니까?

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

coldplay.xixi
coldplay.xixi원래의
2020-12-08 16:07:3911204검색

uniapp에서 페이지 주소 점프를 구현하는 방법: 1. navigator 태그를 사용합니다. 코드는 [d5231c3ec813bfcaeaa0bf47768ea406]입니다. @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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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