文件成功上传,服务器发送响应
<View style={{height: 80}}>
<ScrollView
horizontal={true}
containerStyle={{
flexDirection: "column",
flexWrap: "wrap",
alignItems: "flex-start"
}}
>
{data.map(d => renderElement(d))}
</ScrollView>
</View
renderElement = (d: string) => (
<View
style={{
justifyContent: "center",
alignItems: "center",
borderWidth: 1,
borderColor: "#898989",
backgroundColor: "white",
borderRadius: 12,
margin: 3,
height: 24
}}
>
<Text style={{marginHorizontal: 8, fontSize: 16, color:"#898989#"}}>
{d}
</Text>
</View>
)
但是成功之后,我在浏览器控制台中发现了一个错误
未捕获到的DOMException:阻止了起源为“ http://example.com”的框架访问跨域框架。
我已在Chrome浏览器中启用了CORS插件,并且还允许从后端进行访问控制。 如果有人知道就寻求帮助。