我正在尝试创建简单的 webapp,我想在其中使用 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")