猿问

如何在 Nativescript 中获取 elementById?

我正在将 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来获取标签元素FormattedString - formString 在 javascript 中是这样的:


let fs = doument.getElementById('formString');

我怎样才能在 Nativescript-Vue 中做到这一点?我知道有库nativescript-dom,但我不想将整个库用于简单的 getById。


慕标5832272
浏览 134回答 1
1回答

守着星空守着你

使用Label.getViewById("formString")访问FormattedString的属性。getViewById是与 javascript getElementById 最接近的等价物希望这可以帮助
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答