#このチュートリアルの動作環境: Windows7 システム、uni-app2.5.1 バージョン、thinkpad t480 コンピューター。Uniapp のページ アドレス ジャンプの実装方法: 1. navigator タグを使用します。コードは [
]; 2 . [@tap]イベントを使用してジャンプします。
推奨 (無料): 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>
<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 中国語 Web サイトの他の関連記事を参照してください。