我正在使用带有参数的 $location.path 触发 URL 更改,但是这些参数没有传递到目标页面。
我的源页面是sidebar.html,我的目标页面是dashboard.html。
在我的 sidebar.html 中,我呈现了一个 Kendo UI 树视图小部件,如下所示:
<span id="treeview" kendo-tree-view="tree"
style="color:white;"
k-template="vm.treeItemTemplate"
k-options="vm.treeOptions"
k-data-source="vm.reportsTree"
k-on-change="vm.onTreeSelect(kendoEvent)">
</span>
在我的 sidebar.js 中,我使用点击事件设置了vm.treeItemTemplate:
vm.treeItemTemplate = "<a href='\' ng-click='vm.treeItemClick(this)'> {{dataItem.text}} </a>";
然后,一旦我在浏览器中单击树视图项目,我就会触发 vm.treeItemClick 事件来更改 URL 并发出“reptname”参数:
vm.treeItemClick = function (item) {
console.log("tree view clicked !");
$location.path('/index.html').search({reptname:'MTM'});
}
这很痛苦,我会很感激一些建议。
我需要使用左侧导航栏中的 Kendo treeview 对象来允许用户选择各种报告选项,这些选项又将重定向到具有特定“reptname”参数值的dashboard.html。
现在,当我在sidebar.js (使用 Chrome 开发工具)中打破 $location.path() 时,我清楚地看到了 $location 对象上的正确 URL 属性。
$location
LocationHashbangUrl {$$protocol: "http", $$host: "localhost", $$port: 49479, $$parse: function, $$compose: function…}
$$absUrl: "http://localhost:49479/index.html#/index.html?reptname=MTM"
$$host: "localhost"
$$parse: function (url) {
$$path: "/index.html"
$$protocol: "http"
$$replace: false
$$rewrite: function (url) {
$$search: Object
$$url: "/index.html?reptname=MTM"
__proto__: Object
但是,一旦它被重定向到 dashboard.html(在我的路由中定义为 url:"/"),我就看不到 $location 对象中的参数列表,也看不到 $routeParams 对象中的参数列表。
这就是我卡住的地方!
- - - 更新 - - - -
当我使用参数手动刷新 index.html 页面时,$location 对象包含参数。
ex/ URL:手动输入的链接
但是,如果我使用从 sidebar.js 重定向$location.path('/index.html').search({reptname:'MTM'});
,我什么也得不到!