未捕获的类型错误:tags.join不是一个函数。
<p>我有一个页面,其中有多个标签存储在一个数组中。我想编辑该页面,并尝试将标签数组加载到TagsInput中时,出现以下错误消息:</p>
<pre class="brush:php;toolbar:false;">Uncaught TypeError: tags.join is not a function</pre>
<p>以下是与此错误相关的代码片段:</p>
<pre class="brush:php;toolbar:false;">import { TagsInput } from "react-tag-input-component";
const UpdatePage = () => {
const [tags, setTags] = useState("");
const tagsString = tags.join(", ");
// Fetching tags from backend and storing into setTags
setTags(<some_code_for_axios_get>)
return(
<div>
<FormControl fullWidth margin="normal">
<TagsInput
label="Tags"
size="small"
value={tagsString}
onChange={setTags}
placeHolder="Type your tag and press enter"
/>
</FormControl>
</div>
)
}</pre>
<p>还尝试了以下方法,并得到了n.map不是一个函数的错误消息:</p>
<pre class="brush:php;toolbar:false;"><div className="tags">
{tags.length
? tags.map((type, i) => (
<TagsInput
key={i}
label="Tags"
size="small"
value={i}
onChange={setTags}
placeHolder="Type your tag and press enter"
/>
))
: <TagsInput
label="Tags"
size="small"
value={tags}
onChange={setTags}
placeHolder="Type your tag and press enter"
/>
}
</div></pre>
<p>使用以下代码,我可以在控制台中看到数据:</p>
<pre class="brush:php;toolbar:false;">tags.forEach((element) => {
console.log(element);
});</pre>
<p><br /></p>