我正在将nativescript与vue.js一起使用,并且正在尝试执行类似DOM操作的操作。这是我模板中的示例代码:
<Label textWrap="true">
<FormattedString id="formString"
backgroundColor="yellow"
effectiveHeight="100"
effectiveWidth="100%">
<Span text="This text has a " />
</FormattedString>
</Label>
我想通过他的ID- formString 获得标签元素 FormattedString 在javascript中是这样的:
let fs = doument.getElementById('formString');
如何在Nativescript-Vue中做到这一点?
我知道这里有库nativescript-dom,但我不想将整个库用于简单的getById。
答案 0 :(得分:4)
使用Label.getViewById(“ formString”)访问FormattedString的属性。
getViewById与javascript getElementById最接近
希望这会有所帮助