使用angularjs在Office加载项中使用Office.initialize的正确方法

时间:2017-07-08 15:22:22

标签: angularjs ms-office office-js office-addins office-app

我想用angular和angular-ui-router构建一个Office加载项。我不知道放置Office.initialize的正确位置是什么。

目前,我使用index.html

<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
<script src="https://cdn.rawgit.com/devote/HTML5-History-API/master/history.js"></script>
<script src="/javascripts/angularApp.js"></script>
...
<body ng-app="myApp">
    <ui-view ng-cloak></ui-view>
</body>

angularApp.js

Office.initialize = function (reason) {
    $(document).ready(function () {
        angular.element(document).ready(function () {
            angular.bootstrap(document, ['myApp'])
        })
    });
}

var app = angular.module('myApp', ['ui.router', 'ui.bootstrap'])

app.config(['$stateProvider', function ($stateProvider) {
    $stateProvider
        .state('ttt', {
            url: '/ttt',
            template: 'ttt',
            controller: 'tttCtrl'
        })
        .state('addinTest', {
            url: '/addin/test',
            template: '<a href="ttt" target="_self">ttt</a><br/><br/><a href="addin/another" target="_self">another page</a>'
        })
}])

app.controller('tttCtrl', [function() {
    console.log('console ttt')
}])

manifest.xml

<bt:Url id="Contoso.Taskpane3.Url" DefaultValue="https://localhost:3000/addin/test" />

因此,加载加载项会显示test页面,其中包含2个按钮。点击ttt加载ttt页面。 但是,我的测试显示console ttt显示两次。

如果我从angular.element(document).ready(...)删除Office.initializeconsole ttt只能正确显示一次。但是,在打开与Excel交互的another页面时,出现错误:Office.context is undefined

所以有人能告诉我是否应该使用angular.bootstrap(...)吗?使用angularjs在Office加载项中执行Office.initialize的正确方法是什么?由于这个原因,出现了许多随机奇怪的行为......

2 个答案:

答案 0 :(得分:0)

控制台ttt显示两次的原因是我同时有<body ng-app="myApp">和angular.bootstrap。

  

如果我从Office.initialize中删除了angular.element(document).ready(...),则控制台ttt只能正确显示一次。但是,当打开另一个与Excel交互的页面时,我收到一个错误:Office.context未定义。

我还没有测试过,但完全删除Office.initialize阻止并保留<body ng-app="myApp">可能会解决问题......

答案 1 :(得分:0)

正确的方法是您必须在Office.initialize

中手动启动AngularJS App
  

RouteConfig.js

Office.initialize = function () {
    //load angular app after office has been initialized
    angular.bootstrap($('#TSRApp'), ['TSRApp']);
}
var app = angular.module("TSRApp", ["ngRoute"]);
app.config(function ($routeProvider) {
    $routeProvider
        .when("/", {
            templateUrl: "../Home/Index.html"
        })
        .when("/settings", {
            templateUrl: "../Settings/Index.html"
        })
        .when("/message", {
            templateUrl: "../MessageRead/MessageRead.html"
        });
});