teamcenter_awc之加载soa服务

awc版本是active workspace 3.+。

teamcenter_awc之加载soa服务_第1张图片

目前知晓的调用soa方式有两种:

第一种:

        java中通过gwt调用soa服务。(即将过时)

第二种:

        通过js调用。

        active workspace中提供的范例中通过json文件描述好soa服务,如下图

            teamcenter_awc之加载soa服务_第2张图片

 

       js会加载好这个soa服务并把data准备好,然后在html标签中使用data

          teamcenter_awc之加载soa服务_第3张图片

   关键点:angularJS会在加载自定义指令的时候,把数据也加载上,在aw-command-panel.directive.js的link方法中,发布通知:eventBus.publish("awPanel.reveal", {
                    scope: $scope
                })

                 

你可能感兴趣的:(Teamcenter_AWC)