【发布时间】:2015-04-20 17:26:50
【问题描述】:
Officejs 库可以通过将库引用https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js 添加到索引页来在 Angular 控制器中使用,方法如下
function sendRequest() {
// Create a local variable that contains the mailbox.
var mailbox = Office.context.mailbox;
mailbox.makeEwsRequestAsync(getItemRequest(mailbox.item.itemId), callback);
}
function callback(asyncResult) {
var result = asyncResult.value;
var context = asyncResult.context;
// Process the returned response here.
}
有没有更好的方法来处理 angular js 项目中的这类库?
【问题讨论】:
-
这个库不是仅可用于(或至少制作)用于 Outlook 插件吗?见:channel9.msdn.com/Events/Build/2015/3-694
标签: angularjs angularjs-directive angularjs-scope office365 restangular