zoukankan      html  css  js  c++  java
  • SAP UI5 Routing 路由介绍

    官网链接:https://sapui5.hana.ondemand.com/1.36.6/docs/guide/e5200ee755f344c8aef8efcbab3308fb.html

    一个例子:

    "routing": {
          "config": {
            "routerClass": "sap.m.routing.Router",
            "viewType": "XML",
            "viewPath": "kyma.sample.app.view",
            "controlId": "app",
            "controlAggregation": "pages",
            "async": true
          },
          "routes": [
            {
              "pattern": "",
              "name": "orders",
              "target": ["orders"]
            }
          ],
          "targets": {
            "orders": {
              "viewName": "Orders",
              "viewId": "orders",
              "viewLevel": 1,
              "title": "{i18n>title}"
            }
          }
    

    在 manifest.json 文件的 sap.ui5 区域,添加了三个子区域:

    (1) config
    (2) routes
    (3) target

    config

    This section contains the global router configuration and default values that apply for all routes and targets.

    包含了全局路由器信息和适应于所有路由路径和目标的默认值。

    We define the router class that we want to use and where our views are located in the app.

    定义了路由器实现类以及我们的视图在应用中的具体位置。

    To load and display views automatically, we also specify which control is used to display the pages and what aggregation should be filled when a new page is displayed.

    为了让视图能够显示出来,需要定义哪个控件用于显示页面,以及页面通过何种 aggregation,填充到该控件去。

    routes

    Each route defines a name, a pattern, and one or more targets to navigate to when the route has been hit.

    每条路由信息定义了一个名称,一个格式,以及一个路由目的视图,当该路由触发时,目的视图会显示。

    The pattern is basically the URL part that matches to the route, we define two routes for our app.

    所谓 pattern,即待匹配的 URL 片段。

    例子:

    更多Jerry的原创文章,尽在:"汪子熙":

  • 相关阅读:
    MySql中引擎
    Session和Cookie的区别和联系
    Global Round 2
    CF550 DIV3
    Java的反射机制
    IO多路复用
    简单DP内容
    Java 对象的创建以及类加载
    Java 一些常见问题(持续更新)
    红黑树的一些知识点
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/14889358.html
Copyright © 2011-2022 走看看