Ng2-smart-table自动完成添加新功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ng2-smart-table自动完成添加新功能相关的知识,希望对你有一定的参考价值。
我看过过滤时可以自动完成的示例。
但是,当您添加新记录时,如何使用自动完成功能连接到Web API?
答案
在设置ng2-smart-table的设置之前,我加载了自动完成数据。加载数据后,我使用列定义设置设置,如下所示:
this.settings = {
columns: {
business_role: {
title: 'Business Role',
editor: {
type: 'completer',
config: {
completer: {
data: this.dataBusinessRoles,
searchFields: 'business_role',
titleField: 'business_role'
},
},
}
}
}
}
以上是关于Ng2-smart-table自动完成添加新功能的主要内容,如果未能解决你的问题,请参考以下文章
./node_modules/ng2-smart-table/ng2-smart-table.ngfactory.js 中的错误
如何将自动完成添加到动态添加的输入字段?自动完成功能不适用于动态添加的输入字段