【发布时间】:2013-01-05 07:46:19
【问题描述】:
我正在尝试创建简单的 web 应用程序,我想在其中使用 HTML textarea 控件接收用户的多行输入。有什么开箱即用的方法可以在 Shiny 中创建这样的输入控件吗?
textInput 的帮助页面没有显示太多选项
textInput {shiny} R Documentation
Create a text input control
Description
Create an input control for entry of unstructured text values
Usage
textInput(inputId, label, value = "")
Arguments
inputId
Input variable to assign the control's value to
label
Display label for the control
value
Initial value
Value
A text input control that can be added to a UI definition.
Examples
textInput("caption", "Caption:", "Data Summary")
【问题讨论】:
标签: r textarea textinput shiny