我在我的应用程序中使用“ react-native-inline-edit”,但出现错误:
SyntaxError in /Users/evarina077/Documents
/08_almostEditRN/components/EditPlugin.js: Unexpected
token (19:31)
17 | <Text>Testing</Text>
18 | <EditableText
> 19 | text={'textOfTheField'},
| ^
20 | sendText={() => sendText()},
21 |
22 | loading: isLoading,
我收到此错误,但不确定为什么“,”会是错误,我不需要吗?
最佳答案
不,您不需要那里的逗号。诸如text
,sendText
等的值是props,并且不以逗号分隔。这样可以:
<EditableText
text={'textOfTheField'}
sendText={() => sendText()}
/>