【鸿蒙踩坑记录】解决:Route information is not configured for the current page. To avoid possible redirection

一、问题描述

在做鸿蒙应用开发的时候,运行项目会报以下的错误

Route information is not configured for the current page. To avoid possible redirection issues, configure route information for the page.
Configure route information in C:\Users\...\entry\src\main\resources\base\profile\main_pages.json
Make sure the file path or previewer configuration contains only letters, digits, spaces, and special characters: - _ .

二、问题分析

这个错误提示表示当前页面的路由信息未配置。为了避免可能的重定向问题,需要在指定的文件中配置页面的路由信息;并且确保文件路径或预览器配置只包含字母、数字、空格和特殊字符:- _ 。

错误提示中也指明了是在此文件中配置路径

entry\src\main\resources\base\profile\main_pages.json

三、解决方法

找到 main_pages.json 文件,将需要打开的页面路径配置在此即可

【鸿蒙踩坑记录】解决:Route information is not configured for the current page. To avoid possible redirection_第1张图片

注意:路径前不要有斜杠,错误路径:"/pages/...",正确路径:"pages/..."

你可能感兴趣的:(bug)