我正在使用线路通知将消息和图像发送到群组。 但是目前我在发送图像时遇到一些问题。
我尝试使用https://apitester.com/:
失败了,因为我不知道如何设置“发布数据”。
除了apitester之外,我还尝试了更易于使用的邮递员:
它能够与图像一起发送消息。
下面是WinForms上一个按钮的代码:
<Select
showSearch
style={{ width: 200 }}
placeholder="Select a person"
optionFilterProp="children"
onChange={onChange}
onFocus={onFocus}
onBlur={onBlur}
onSearch={onSearch}
filterOption={(input, option) =>
option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0
}
>
{data.map(item => <Option key={item._id} value={item.email}>{item.email}</Option> )}
</Select>