gpt4 book ai didi

javascript - window.location.href 不适用于 ionic 应用程序中的移动设备

转载 作者:行者123 更新时间:2023-11-30 00:12:08 25 4
gpt4 key购买 nike

我正在尝试通过 UI 端的函数调用打开一个 View

<ion-option-button class="button-light icon ion-chatbubble" ng-click="openView('username')"></ion-option-button>

相同的 Controller 代码是

$scope.openView=function(user){
window.location.href ="/signin.html#/im?p=@"+user;
};

现在这在浏览器中完美运行,但是当我在移动设备上测试时,我收到以下错误:-

ERR_FILE_NOT_FOUND(file:///signin.html#im?p=username)

我知道有多种方法,最好是使用 ui router 等,但我已经在我的应用程序中加载了另一个 Angular 应用程序的 View ,这就是为什么我不知何故坚持这一点。

最佳答案

ionic 上的路径应该是相对的,删除前导斜杠并尝试:

window.location.href ="signin.html#/im?p=@"+user;

关于javascript - window.location.href 不适用于 ionic 应用程序中的移动设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36027864/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com