为什么用事件和navigator标签都不跳转页面了?
'use strict' ; // 获取全局应用程序实例对象 const app = getApp() // 创建页面实例对象 Page({ /** * 页面的初始数据 */ data: { title: '页面标题' , userInfo: '' , }, /** * 生命周期函数--监听页面加载 */ onLoad: function onLoad() { console.log( "页面执行demo页面onLoad" ); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function onReady() { // TODO: onReady console.log( "页面执行demo页面onReady" ); }, /** * 生命周期函数--监听页面显示 */ onShow: function onShow() { // TODO: onShow console.log( "页面执行demo页面onShow" ); }, /** * 生命周期函数--监听页面隐藏 */ onHide: function onHide() { // TODO: onHide console.log( "页面执行demo页面onHide" ); }, /** * 生命周期函数--监听页面卸载 */ onUnload: function onUnload() { // TODO: onUnload console.log( "页面执行demo页面onUnload" );
/** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function onPullDownRefresh() { // TODO: onPullDownRefresh } }); |
以上是js的代码,以下是页面的代码
<!--pages/demo/demo.wxml--> < view > < navigator url = "../index/index" open-type = "navigate" hover-class = "navigator-hover" >跳转到u页面</ navigator > </ view > |
然后点击页面上的文字什么的,一点效果都没有?请问有知道为什么的呢?