我正在尝试将JavaScript字符串显示为jsx,似乎无法在react native中将字符串显示为jsx,例如const test = '<Text>hello</Text>'
render() { return ({test})}
。
给出以下字符串
const svg = '<Svg.G fill="none" fill-rule="evenodd"> <Svg.Path fill="none" d="M0 0h24v24H0z"/> <Svg.Path stroke="#333" stroke-linecap="round" stroke-linejoin="round" d="M3.5 12.5h17v9h-17zM13.5 12.5v9M10.5 12.5v9M1.883 9.602l18.353-4.918.776 2.898L2.66 12.5z"/> <Svg.Path stroke="#333" stroke-linejoin="round" d="M6 6.857c.957.553 4.675.393 4.675.393S8.957 3.945 8 3.393a2 2 0 1 0-2 3.465zM15.296 4.366c-.546.956-3.852 2.674-3.852 2.674s-.164-3.718.388-4.674a2 2 0 1 1 3.464 2z"/> <Svg.Path stroke="#333" stroke-linecap="round" stroke-linejoin="round" d="M12.508 6.755l.777 2.897M9.61 7.531l.776 2.899"/></Svg.G>';
然后我要像下面这样渲染它
render() {
return (
<View>
<Svg>
{svg}
</Svg>
</View>
);
}
这什么都不呈现,如何呈现此字符串,或者我应该将字符串转换为数组并将其呈现为数组?
答案 0 :(得分:4)
这不是您问题的答案,但也许可以帮助您弄清楚如何做自己想做的事情。 我强烈不建议使用这种方法;)
因此您不能只对字符串使用 eval ,因为您需要将 jsx 转换为 js 。 Babel在构建阶段为我们做这件事,但是您可以解析一个字符串并将其转换为 React.createElement 形状。
仅当您知道所接收组件的字符串格式是什么时,
我仅为您的示例(<Text>hello</Text>
)提供示例,因为它虽然容易得多,但可以帮助您了解想法。
import React, { PureComponent } from 'react';
import RN, { View } from 'react-native';
function mapStringToComponent(stringToRender) {
const parseResult = stringToRender.match(/<([a-z]*)>(.*)<\/[a-z]*>/i);
// result of this regex ["<Text>hello</Text>", "Text", "hello"]
if (parseResult !== null) {
const [, compName, innerText] = parseResult;
return React.createElement(
RN[compName],
null, // here may be an object with attributes if your node has any
innerText,
);
}
return null;
}
export default class MyDynamicComponent extends PureComponent {
render() {
const component = mapStringToComponent('<Text>hello</Text>');
return (
<View>
{component}
</View>
);
};
}
在这里您可以检查转换后的svg字符串的外观:babel link
我试图用Google搜索一些可以为您完成操作的lib,但没有找到。也许我不擅长使用Google搜索:)
答案 1 :(得分:2)
我将要显示的svg const保存为svg文件并打开,但它为空
所以尝试修复它
在react native中显示svg的最佳方法是这种方式
import Image from 'react-native-remote-svg';
<View>
<Image source={require('./assets/picture.svg')} />
</View>
答案 2 :(得分:0)
您可以使用dangerouslySetInnerHTML
设置HTML。但是请小心,名称没有误。根据HTML的来源,这可能允许某人将脚本嵌入到您的站点中。可以这样使用
render () {
<View>
<SVG dangerouslySetInnerHTML={svg}></SVG>
</View>
}
答案 3 :(得分:0)
我们可以使用 import react-jsx-parser 添加了一行来过滤掉行和空格,因为解析器在 SVG 代码中的空格时会抛出错误
例如
var svg = `<Svg
width={286}
height={335}
viewBox="0 0 286 335"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Path
d="M63.763 25.066h17.72L107.542 1l14.593 16.741L248.258 32.39V140.16L284.74 257.35c-3.822 3.488-20.013 15.486-54.202 35.575-51.7 25.112-174.419 37.668-229.315 40.807l11.465-193.571c5.56.698 23.557 1.675 51.075 0 34.398-2.092 37.525 2.093 43.779-15.694 6.254-17.788-6.254-35.576-13.55-49.178-5.838-10.882-22.585-14.997-30.229-15.695V25.065z"
fill="#F8F9F8"
stroke="#22223B"
strokeOpacity={0.8}
strokeWidth={1.06988}
strokeLinecap="round"
strokeDasharray="6.42 6.42"
/>
<Path
onPress={handleOnPress}
transform="rotate(3.757 16.59 146.446)"
fill="#9A8C98"
fillOpacity={0.22}
d="M16.5894 146.446H40.5513V192.058H16.5894z"
/>
</Svg>`
svg = svg.replace(/\n/g, ' ').replace(/\>[\t ]+\</g, "><");
return (
<JsxParser
components={{ Svg, Path }}
renderInWrapper={false}
bindings={{
foo: 'foo',
handleOnPress: () => alert('sasas'),
}}
blacklistedAttrs={[]} // this line should fix your issue
jsx={svg}
/>
);