android 不显示应用程序中的输出,它显示控制台中定义的日志

k2arahey  于 2024-01-04  发布在  Android
关注(0)|答案(2)|浏览(135)
  1. this is my code if i am using console.log(result) is it showing me output in the console log but not showing output in the app some with react react native i am using an quote api Link:- https://api.quotable.io/quotes/random you can see the response of the api

字符串
联系我们“tvXaBe-wkKU”,“author”:“Octavia E. Butler”,“authorSlug”:“octavia-e-butler”,“content”:“有时候做朋友意味着掌握时机的艺术。有一段时间是沉默的。有一段时间是放手的,让人们投入自己的命运。还有一段时间是准备在一切结束时收拾残局。",“dataAdded”:“2020-07-10”,“dateModified”:“2023-04-14”,“length”:229,“tags”:[“友谊”]}]
while using 9result)in the console if I am using console.log(result.content)if is showing log undefined

  1. `import React, {useEffect, useState} from 'react';
  2. import {
  3. Text,
  4. TouchableOpacity,
  5. View,
  6. } from 'react-native';
  7. const App = () => {
  8. const [Quote, setQuote] = useState('Loading...');
  9. const [Author, setAuthor] = useState('Loading...');
  10. const [isLoading, setIsLoading] = useState(false);
  11. const randomQuote = () => {
  12. setIsLoading(true);
  13. fetch("https://api.quotable.io/quotes/random")
  14. .then(res => {
  15. if (!res.ok) {
  16. throw new Error(`Failed to fetch: ${res.status}`);
  17. }
  18. return res.json();
  19. })
  20. .then(result => {
  21. console.log(result.content);
  22. setQuote(result.content);
  23. setAuthor(result.author);
  24. setIsLoading(false);
  25. })
  26. .catch(error => {
  27. console.error('Error fetching quote:', error.message);
  28. setIsLoading(false);
  29. });
  30. };
  31. useEffect(() => {
  32. randomQuote();
  33. }, []);
  34. return (
  35. <View
  36. style={{
  37. flex: 1,
  38. justifyContent: 'center',
  39. alignItems: 'center',
  40. backgroundColor: '#ADD8E6',
  41. }}>
  42. <View
  43. style={{
  44. width: '90%',
  45. backgroundColor: '#fff',
  46. borderRadius: 20,
  47. padding: 20,
  48. }}>
  49. <Text
  50. style={{
  51. color: '#333',
  52. textAlign: 'center',
  53. fontSize: 26,
  54. fontWeight: '600',
  55. marginBottom: 20,
  56. }}>
  57. Quote of the Day
  58. </Text>
  59. <Text style={{color: 'black', fontSize: 30, fontWeight: '800'}}>"</Text>
  60. <Text
  61. style={{
  62. color: 'purple',
  63. fontSize: 16,
  64. lineHeight: 26,
  65. letterSpacing: 1.1,
  66. fontWeight: '400',
  67. textAlign: 'center',
  68. marginBottom: 10,
  69. paddingHorizontal: 30,
  70. }}>
  71. {Quote}
  72. </Text>
  73. <Text
  74. style={{
  75. color: 'black',
  76. fontSize: 30,
  77. textAlign: 'right',
  78. fontWeight: '800',
  79. }}>
  80. "
  81. </Text>
  82. <Text
  83. style={{
  84. textAlign: 'right',
  85. fontWeight: '300',
  86. fontSize: 16,
  87. fontStyle: 'italic',
  88. color: '#000',
  89. }}>
  90. -- {Author}
  91. </Text>
  92. <TouchableOpacity
  93. onPress={randomQuote}
  94. style={{
  95. backgroundColor: 'black',
  96. padding: 20,
  97. borderRadius: 30,
  98. marginVertical: 20,
  99. }}>
  100. <Text style={{color: '#fff', fontSize: 18, textAlign: 'center'}}>
  101. {isLoading ? 'Loading...' : 'New Quote'}
  102. </Text>
  103. </TouchableOpacity>
  104. </View>
  105. </View>
  106. );
  107. };


导出默认应用程序;`

knpiaxh1

knpiaxh11#

你的结果是一个数组而不是一个对象。所以如果你写

  1. console.log(result[0].content)

字符串
您将看到第一项的内容。

js81xvg6

js81xvg62#

正如Aslihan提到的,给定API调用的结果是一个对象数组。
如果您只需要访问第一个,或者如果您知道它总是一个结果,那么result[0].content可以完美地工作。
但是,如果您有多个报价要显示,那么我建议使用map()来显示。

示例:

  1. const Quotes = result.map((result)=>(<div>{result.content}</div>))

字符串

相关问题