我正在從 API 獲取一些數據,它返回給我結果,例如" 如何將其轉換為正常形式“”const results = [ { question: ' movie "The Revenant"?' }, { question: ' game "Roblox" released?' }, { question: '"A rainy Lithuanian / Is dancing as an Indian"' },];export default function App() { return ( <View style={styles.container}> {results.map((q) => ( <Text> {q.question} </Text> ))} </View> );}這就是我得到的
如何解析“ 在本機反應中
MYYA
2023-10-14 18:54:27