我知道这个网站还有其他问题,但我无法得到他们的建议。
我有一些JavaScript:
function isES6()
{
try
{
Function("() => {};"); return true;
}
catch(exception)
{
return false;
}
}
这显示在我的网页上,除了没有换行符,它只显示为:
displayString = 'Text to go on line 1'+'<br/>'+'Text to go on line 2';
我也试过'/ n',但这似乎只是被省略了。
实际JavaScript:
"Text to go on line 1<br/>Text to go on line 2"
答案 0 :(得分:6)
由于您希望处理HTML标记,因此必须使用In [4]: df_dropped
Out[4]:
Letter Color Value
0 B Blue 5
1 A Red 20
2 C Orange 25
,而不是const handlers = withHandlers({
...
});
const ComponentOne = compose(
graphql(MY_BEAUTIFUL_WORKTYPE_QUERY),
handlers
)(WorkItemComponent);
const ComponentOne = compose(
graphql(MY_VERYBAD_WORKTYPE_QUERY),
handlers
)(WorkItemComponent);
const Switcher = ({workType}) => workType === "something" ? <ComponentOne/> : <ComponentTwo/>;
export default Switcher;
。
答案 1 :(得分:1)