【发布时间】:2020-07-10 23:04:55
【问题描述】:
如果我在 html5 中使用 <select> 标记并使用 NodeJS,我会遇到错误,例如 Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
所以,我想要<select 标签的替代代码
【问题讨论】:
-
在 HTML 中使用
<select>元素不会导致该错误。 HTML 5 不会用其他任何东西替换<select>。 -
如果我从代码中删除了
-
然后,您与代码的其他部分发生了一些奇怪的交互,您需要修复这种交互。
-
请提供一个minimal reproducible example,显示包含
select元素并产生您所看到的错误的最少代码量。 -
标签: html css select html5-canvas option