【发布时间】:2022-01-21 19:23:45
【问题描述】:
我是新人,目前正在使用 React Native 将我的网站转换为移动应用程序,我遇到了这个错误。如果有人可以提供帮助,我将不胜感激! :)
这是我得到的错误:
iOS Bundling failed 790ms
SyntaxError: /Users/jj/nurse-job/App.js:
Unexpected token (9:13)
7 | <WebView
8 | source={{ url: {
https://www.praecuro.com }}}
9 | style = {{ marginTop: 20 }}
| ^
10 | />
11 | );
12 | }
这里是 app.js 中的完整代码
import * as React from "react";
import { WebView } from "react-native-
webview"; export default class App extends
React.Component {
render() {``
return
<WebView
source={{ url: {
https://www.praecuro.com }}}
style = {{ marginTop: 20 }}
/>
);
}
}
【问题讨论】:
标签: javascript reactjs react-native