您的位置:首页 > 其它

跳转页面的几个情况

2019-01-11 16:01 337 查看

1. Business rule 跳转可以使用: action.setRedirectURL(url);

2.ui action 跳转可以使用: g_navigation.open(url,'_blank'); (资料参考: https://docs.servicenow.com/bundle/jakarta-application-development/page/app-store/dev_portal/API_reference/GlideNavigationV3/concept/c_GlideNavigationV3API.html

3.client script 跳转可以使用: 

var url = "sp?id=sc_cat_item&sys_id=69c9f091db15db80d4eb7b088c9619dd&re_call_id="+newValue;

top.window.location = url;

 4.widget client controller 跳转可以使用: $window.location.href ='';


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  跳转页面