Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何将这些代码行输出为类似
<a href="http://">SOMETHING</a>
BASE_URL为
当我运行这段代码时,我在浏览器中得到这个输出:
这样做的正确方法是什么?
在这种情况下,您只需要丢失引号:
<a href={BASE_URL}>
你可以在babeljs上使用 JSX 编译器 来更好地了解它编译成的 JS。
此外,您可以使用 key 属性,而不是返回对象
return <ul className="nav" key="list"> ... </ul>;