gpt4 book ai didi

javascript - Cordova 与 Create-react-app

转载 作者:行者123 更新时间:2023-12-03 13:02:50 24 4
gpt4 key购买 nike

我使用create-react-app创建了一个ReactJs应用程序,然后使用npm run build进行了生产构建。在使用 Cordova 创建的 www 文件夹中,我只需复制 create-react-app 构建文件夹中的所有文件,就可以了。

我想知道如何加入 Cordova 的事件,例如:

function startApp() {
// your app logic
}
if (window.cordova) {
document.addEventListener('deviceready', startApp, false);
} else {
startApp();
}

例如,我想在 startApp() 中调用缩小的 JS 文件。或者是否有任何其他工作流程可用于使 Cordova 事件与 React 应用程序一起使用。

一个小例子会很有帮助。

是否可以使用构建文件并直接在 Cordova 中使用 React 应用程序?我不确定这将如何工作,因为 Webpack 设置可以将 ES6 代码转换为 ES5 等。

我是 Cordova 新手,在集成方面遇到了困难。

最佳答案

我已经找到了这两个方法,并将在此发布给其他正在寻找相同方法的人。也许还有其他方法可以做到这一点,但这对我有用。

所以基本上我们将使用(比如说)创建一个 Cordova 应用程序:cordova 创建 testapp com.test.testapp testapp这会给我一个文件夹结构,如下所示:

testapp
--hooks
--platforms
--plugins
--www
--config.xml

现在在 testapp 文件夹中我们运行:create-react-app teastappReact这会将我的 React 应用程序添加到 testapp 文件夹中。您的 React 应用程序将在/src 目录中有一个主 index.js。

我的index.js确保将你的主要逻辑包装在一个函数中,然后与Cordova对象一起调用该函数,如下所示:

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css';


const startApp = () => {
ReactDOM.render(
<App />,
document.getElementById('root')
);
}

if(!window.cordova) {
startApp()
} else {
document.addEventListener('deviceready', startApp, false)
}

现在您的应用程序将拥有 Cordova 实例以及应用程序中的设备对象(例如 navigator.camera)。

此外,在公共(public)文件夹中可以找到的React应用程序index.html中,复制Codova www文件夹中的index.html中的html。现在我们可以删除 www 文件夹中的所有文件。稍后我们将手动或通过脚本将所有文件从 React apps build 文件夹复制到 Cordova www 文件夹。

所以我的 index.html 看起来像下面这样,请注意作为脚本包含的 cordova.js 文件。

<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>

<head>
<!--
Customize this policy to fit your own app's needs. For more guidance, see:
https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
Some notes:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
-->
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src * data: content:;">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">

<!-- Latest compiled and minified CSS -->
<title>React App</title>
</head>

<body>
<div id="root"></div>
<script type="text/javascript" src="cordova.js"></script>
</body>

</html>

最后在您的 React 应用程序的 package.json 中添加以下行:....“主页”:“../www”....这将确保您的最终构建文件指向正确的路径。我们还可以在 package.json 构建脚本中添加以下几行。

  "scripts": {
"start": "react-scripts start",
***"build": "react-scripts build && robocopy .\\build ..\\www /MIR",***
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build&&gh-pages -d build"
}

它可以是基于操作系统(Windows/Linux 等)的 robocopy 或 cp-r..

我们应该准备好 Cordova 应用程序来构建cordova 构建 android/ios。

关于javascript - Cordova 与 Create-react-app,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43336924/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com