我正试图在R闪亮中获得这行代码:
<input id="inputId" type="text" value="value" required/>
如何使用闪亮的标签来做到这一点?
我知道
tags$input(id="inputId", type="text", value = "value")
产生
<input id="inputId" type="text" value="value"/>
但我不知道如何添加所需的arg。 在此先感谢您的帮助:)
答案 0 :(得分:2)
tags$input(id="inputId", type="text", value = "value", required=NA)