NativeScript Vue RadAutoCompleteTextView 以编程方式删除所有标记
Posted
技术标签:
【中文标题】NativeScript Vue RadAutoCompleteTextView 以编程方式删除所有标记【英文标题】:NativeScript Vue RadAutoCompleteTextView programmatically remove all tokens 【发布时间】:2020-11-15 14:31:23 【问题描述】:有一个 removeAllTokens 方法 here,我已经看到如何从 docs 触发另一个方法,但是它在文档中是针对 angular 的,我不确定如何调用 removeAllTokens 方法。 m 使用 NS-Vue。
我们将不胜感激
【问题讨论】:
【参考方案1】:您可以在自动完成元素上设置一个 id,当您想以编程方式删除所有标记时,只需使用它
import Frame from '@nativescript/core'
const autoCompleteView = Frame.topmost().getViewById('<id of autocomplete view>');
if (autoCompleteView && typeof autoCompleteView.removeAllTokens === 'function')
autoCompleteView.removeAllTokens();
【讨论】:
以上是关于NativeScript Vue RadAutoCompleteTextView 以编程方式删除所有标记的主要内容,如果未能解决你的问题,请参考以下文章
无法在 nativescript vue 中导入 @nota/nativescript-webview-ext/vue