- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试部署我的heroku 应用程序。当我访问该 URL 时,它只显示一个空白屏幕。在浏览器控制台中,它告诉我:
Uncaught SyntaxError: Unexpected token < main.ac26b187.js:1
我检查了heroku日志。我看到这个:
2018-04-19T11:14:00.000000+00:00 app[api]: Build started by user bijman@kth.se
2018-04-19T11:15:59.535210+00:00 app[api]: Release v17 created by user bijman@kth.se
2018-04-19T11:15:59.535210+00:00 app[api]: Deploy 61af7a73 by user bijman@kth.se
2018-04-19T11:14:00.000000+00:00 app[api]: Build succeeded
2018-04-19T11:16:01.505173+00:00 heroku[web.1]: State changed from crashed to starting
2018-04-19T11:16:15.810911+00:00 heroku[web.1]: Starting process with command `yarn start`
2018-04-19T11:16:18.879765+00:00 app[web.1]: yarn run v1.6.0
2018-04-19T11:16:18.948747+00:00 app[web.1]: warning package.json: No license field
2018-04-19T11:16:19.169851+00:00 app[web.1]: $ node index.js
2018-04-19T11:16:20.744933+00:00 app[web.1]: Listening on port 8323
2018-04-19T11:16:21.406512+00:00 heroku[web.1]: State changed from starting to up
2018-04-19T11:17:09.689972+00:00 heroku[router]: at=info method=GET path="/" host=sentify-kth.herokuapp.com request_id=6a2f6010-62a4-4e7a-a07e-d9c71ace8fbe fwd="81.227.66.93" dyno=web.1 connect=0ms service=136ms status=200 bytes=1029 protocol=https
2018-04-19T11:17:09.855575+00:00 heroku[router]: at=info method=GET path="/NiekBijman/Sentify/static/js/main.ac26b187.js" host=sentify-kth.herokuapp.com request_id=001fb771-cb31-4d06-a938-b79d40dad97a fwd="81.227.66.93" dyno=web.1 connect=0ms service=25ms status=200 bytes=1029 protocol=https
2018-04-19T11:17:09.849774+00:00 heroku[router]: at=info method=GET path="/NiekBijman/Sentify/static/css/main.b9e635e3.css" host=sentify-kth.herokuapp.com request_id=7f2ff9ee-01e0-4cbb-ac0c-e36190c8a027 fwd="81.227.66.93" dyno=web.1 connect=0ms service=26ms status=200 bytes=1029 protocol=https
2018-04-19T11:17:10.057003+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=sentify-kth.herokuapp.com request_id=e88cf8b8-c26e-4a22-8305-236f9191668c fwd="81.227.66.93" dyno=web.1 connect=0ms service=5ms status=200 bytes=1029 protocol=https
2018-04-19T11:17:13.818146+00:00 heroku[router]: at=info method=GET path="/NiekBijman/Sentify/static/css/main.b9e635e3.css" host=sentify-kth.herokuapp.com request_id=266bebd7-58df-4106-b383-ca14cd85cc1e fwd="81.227.66.93" dyno=web.1 connect=1ms service=6ms status=304 bytes=237 protocol=https
但老实说,它并没有告诉我太多信息。
当我开始摆弄 package.json 和 index.js 文件时(index.js 以前称为 server.js 但我重命名了它),我开始收到此错误。因此,以下是这些文件:
package.json:
{
"name": "sentify-server",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"start": "node index.js",
"client": "cd client && yarn start",
"server": "nodemon index.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"heroku-postbuild": "cd client && yarn --production=false && yarn run build"
},
"dependencies": {
"dotenv": "^5.0.1",
"ejs": "^2.5.8",
"express": "^4.16.3",
"fetch-tweets": "^0.1.7",
"firebase": "^4.12.1",
"node-fetch": "^2.1.2",
"request": "^2.85.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"concurrently": "^3.5.0"
}
}
客户端/package.json:
{
"name": "sentify",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/icons": "^1.0.0-beta.42",
"express": "^4.16.3",
"mapbox-gl": "^0.44.2",
"material-ui": "^1.0.0-beta.41",
"react": "^16.3.1",
"react-d3-basic": "^1.6.11",
"react-d3-core": "^1.3.9",
"react-d3-shape": "^0.3.25",
"react-dom": "^16.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"react-simple-pie-chart": "^0.5.0",
"webpack": "^3.11.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {},
"description": "## Setup 1. First, make sure that you have **Node Package Manager** (npm) installed on your system. To check if you have Node.js installed, run this command in your terminal:`node -v` To confirm that you have npm installed you can run this command in your terminal:`npm -v`. To update your npm, type this into your terminal: `npm install npm@latest -g` 2. Go to the root of the Repository and run `npm install`. Let it install all the dependencies. 3. Run `npm start` through the terminal. This will start the webserver and the application should pop up in your browser ready for use. Alternatively you can open in through [http://localhost:3000]. Whenever you make changes in your code and save, the browser will update automatically, so you don't have to click refresh anymore. 4. **IMPORTANT** Our config.js file contains our API Keys which is why we put it in .gitignore. @team, you can find the config.js file in the Slack channel. 4. Make sure to update the dependencies in the **package.json**. Updating all the dependencies is possble by `npm install <pkg> --save`. It will append the dependencies to your existing **package.json** file.",
"repository": {
"type": "git",
"url": "git+https://github.com/NiekBijman/Sentify.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NiekBijman/Sentify/issues"
},
"homepage": "https://github.com/NiekBijman/Sentify#readme",
"main": "./frontend/src/index.js",
"proxy": "http://localhost:5000"
}
index.js:
const express = require('express');
const fetch = require('node-fetch');
const FetchTweets = require('fetch-tweets');
const request = require('request');
var path = require("path");
const TW_URL = "http://1.1/search/tweets.json" // Twitter search URL
const SEN_URL = "http://www.sentiment140.com/api/bulkClassifyJson" // URL of sentiment analysis
var TW_KEYS = {
consumer_key: process.env.TW_KEY,
consumer_secret: process.env.TW_SECRET
}
const app = express();
const fetchTweets = new FetchTweets(TW_KEYS);
const port = process.env.PORT || 5000;
// Priority serve any static files.
app.use(express.static(path.join(__dirname, 'client/build')));
if (process.env.NODE_ENV === "production"){
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname+'/client/build/index.html'));
});
}
// For getting tweets like /api/twitter?q=hello&geocode=234523 etc.
app.get('/api/twitter', async (req, res) => {
console.log("Getting tweets")
const options = {
q : req.query.q,
lang: "en",
result_type: "popular",
count: 100,
}
try{
await fetchTweets.byTopic(options, function(results){
console.log("sending results")
res.send(results)
})
}catch (error){
console.log(error)
}
})
app.get('/api/sentiment', async (req, res) => {
const options = {
q : req.query.q,
lang : "en",
count : 100,
}
try{
fetchTweets.byTopic(options, async function(results){
const tweets = {"data": results.map(function(tweet){
return {"text": tweet.body, "query": options.q}
})}
var body = JSON.stringify(tweets)
// get sentiments
const sentiments = await fetch(SEN_URL, {method: "POST", body: body})
const json = await sentiments.json()
const data = json.data
// calculate percentages
const response = {positive: undefined, neutral: undefined, negative: undefined}
var numPos = 0
var numNeu = 0
var numNeg = 0
data.forEach(function(tweet){
switch(tweet.polarity){
case 4:
numPos += 1
break
case 2:
numNeu += 1
break
case 0:
numNeg += 1
break
}
})
const tot = numPos + numNeu + numNeg
response.positive = numPos/tot
response.neutral = numNeu/tot
response.negative = numNeg/tot
// send response
res.send(response)
})
}catch (error){
console.log(error)
}
})
app.listen(port, () => console.log(`Listening on port ${port}`))
是什么导致了这个错误? PS:如果您需要任何其他信息,请告诉我。我对此很陌生,所以不确定您到底需要什么。
编辑:将
中的*
更改为
/
后
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname+'/client/build/index.html'));
});
并将该路由放在文件底部(但在 .listen
之前),我得到了这些错误:
Refused to apply style from 'https://sentify-kth.herokuapp.com/NiekBijman/Sentify/static/css/main.b9e635e3.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
sentify-kth.herokuapp.com/:1 GET https://sentify-kth.herokuapp.com/NiekBijman/Sentify/static/js/main.ac26b187.js net::ERR_ABORTED
sentify-kth.herokuapp.com/:1 Refused to apply style from 'https://sentify-kth.herokuapp.com/NiekBijman/Sentify/static/css/main.b9e635e3.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
sentify-kth.herokuapp.com/:1 Refused to execute script from 'https://sentify-kth.herokuapp.com/NiekBijman/Sentify/static/js/main.ac26b187.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
favicon.ico:1 GET https://sentify-kth.herokuapp.com/favicon.ico 404 (Not Found)
最佳答案
通过检查您的 git 存储库,我假设我们在 chat 中讨论了更改为你工作过,所以我会将它们放在这里,以防其他人遇到同样的问题。
<小时/>在您的 index.js
文件中,您将每个请求转发到 index.html
。
if (process.env.NODE_ENV === "production"){
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname+'/client/build/index.html'));
});
}
通过使用*
,每次浏览器向服务器发出请求时,服务器都会响应并发送回html文件。您应该将其更改为 '/'
,以便仅当用户访问应用程序的索引时才发回文件
...
app.get('/', (req, res) => {
...
您可以在 create-react-app docs 中阅读更多内容
您需要更改的另一件事是将客户端的 package.json
中的 homepage
属性更改为 homepage: '.'
,使用react使用该属性来确定文件的路径,并且由于您的客户端不在应用程序的根目录中,因此 react 可能无法正确找到文件。
查看文档 here了解更多信息。
关于node.js - Heroku 应用程序无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49919935/
我在Windows 10中使用一些简单的Powershell代码遇到了这个奇怪的问题,我认为这可能是我做错了,但我不是Powershell的天才。 我有这个: $ix = [System.Net.Dn
var urlsearch = "http://192.168.10.113:8080/collective-intellegence/StoreClicks?userid=" + userId +
我有一个非常奇怪的问题,过去两天一直让我抓狂。 我有一个我试图控制的串行设备(LS 100 光度计)。使用设置了正确参数的终端(白蚁),我可以发送命令(“MES”),然后是定界符(CR LF),然后我
我目前正试图让无需注册的 COM 使用 Excel 作为客户端,使用 .NET dll 作为服务器。目前,我只是试图让概念验证工作,但遇到了麻烦。 显然,当我使用 Excel 时,我不能简单地使用与可
我开发了简单的 REST API - https://github.com/pavelpetrcz/MandaysFigu - 我的问题是在本地主机上,WildFly 16 服务器的应用程序运行正常。
我遇到了奇怪的情况 - 从 Django shell 创建一些 Mongoengine 对象是成功的,但是从 Django View 创建相同的对象看起来成功,但 MongoDB 中没有出现任何数据。
我是 flask 的新手,只编写了一个相当简单的网络应用程序——没有数据库,只是一个航类搜索 API 的前端。一切正常,但为了提高我的技能,我正在尝试使用应用程序工厂和蓝图重构我的代码。让它与 pus
我的谷歌分析 JavaScript 事件在开发者控制台中运行得很好。 但是当从外部 js 文件包含在页面上时,它们根本不起作用。由于某种原因。 例如; 下面的内容将在包含在控制台中时运行。但当包含在单
这是一本名为“Node.js 8 the Right Way”的书中的任务。你可以在下面看到它: 这是我的解决方案: 'use strict'; const zmq = require('zeromq
我正在阅读文本行,并创建其独特单词的列表(在将它们小写之后)。我可以使它与 flatMap 一起工作,但不能使它与 map 的“子”流一起工作。 flatMap 看起来更简洁和“更好”,但为什么 di
我正在编写一些 PowerShell 脚本来进行一些构建自动化。我发现 here echo $? 根据前面的语句返回真或假。我刚刚发现 echo 是 Write-Output 的别名。 写主机 $?
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我将一个工作 View Controller 类从另一个项目复制到一个新项目中。我无法在新项目中加载 View 。在旧项目中我使用了presentModalViewController。在新版本中,我
我对 javascript 很陌生,所以很难看出我哪里出错了。由于某种原因,我的功能无法正常工作。任何帮助,将不胜感激。我尝试在外部 js 文件、头部/主体中使用它们,但似乎没有任何效果。错误要么出在
我正在尝试学习Flutter中的复选框。 问题是,当我想在Scaffold(body :)中使用复选框时,它正在工作。但我想在不同的地方使用它,例如ListView中的项目。 return Cente
我们当前使用的是 sleuth 2.2.3.RELEASE,我们看不到在 http header 中传递的 userId 字段没有传播。下面是我们的代码。 BaggageField REQUEST_I
我有一个组合框,其中包含一个项目,比如“a”。我想调用该组合框的 Action 监听器,仅在手动选择项目“a”完成时才调用。我也尝试过 ItemStateChanged,但它的工作原理与 Action
你能看一下照片吗?现在,一步前我执行了 this.interrupt()。您可以看到 this.isInterrupted() 为 false。我仔细观察——“这个”没有改变。它具有相同的 ID (1
我们当前使用的是 sleuth 2.2.3.RELEASE,我们看不到在 http header 中传递的 userId 字段没有传播。下面是我们的代码。 BaggageField REQUEST_I
我正在尝试在我的网站上设置一个联系表单,当有人点击发送时,就会运行一个作业,并在该作业中向所有管理员用户发送通知。不过,我在失败的工作表中不断收到此错误: Illuminate\Database\El
我是一名优秀的程序员,十分优秀!