引导程序的新手,我在bootstrap 4的导航栏中有一个下拉列表。 这是我的代码:
>>> a = [66.25, 333, 333, 1, 1234.5]
>>> a.append(333)
>>> a
[66.25, 333, -1, 333, 1, 1234.5, 333]
下拉列表是错误的。出了什么问题?以及如何解决它?任何帮助将不胜感激。
答案 0 :(得分:2)
您需要将下拉列表添加到导航项 div
Office.context.document.bindings.getAllAsync((result: Office.AsyncResult) => {
if (result.status == Office.AsyncResultStatus.Succeeded) {
for (let attBinding of result.value) {
var binding = attBinding as Office.Binding;
}
}
})