NativeScript Vue RadAutoCompleteTextView 以编程方式删除所有标记
NativeScript Vue RadAutoCompleteTextView programmatically remove all tokens
有一个 removeAllTokens 方法 here and I've seen how to trigger another method from the docs,但是它在文档中用于 angular,我不确定我在使用 NS-Vue 时如何调用 removeAllTokens 方法。
不胜感激
您可以在自动完成元素上设置一个 id,当您想要以编程方式删除所有标记时,只需使用这个
import { Frame } from '@nativescript/core'
const autoCompleteView = Frame.topmost().getViewById('<id of autocomplete view>');
if (autoCompleteView && typeof autoCompleteView.removeAllTokens === 'function') {
autoCompleteView.removeAllTokens();
}
有一个 removeAllTokens 方法 here and I've seen how to trigger another method from the docs,但是它在文档中用于 angular,我不确定我在使用 NS-Vue 时如何调用 removeAllTokens 方法。
不胜感激
您可以在自动完成元素上设置一个 id,当您想要以编程方式删除所有标记时,只需使用这个
import { Frame } from '@nativescript/core'
const autoCompleteView = Frame.topmost().getViewById('<id of autocomplete view>');
if (autoCompleteView && typeof autoCompleteView.removeAllTokens === 'function') {
autoCompleteView.removeAllTokens();
}