gricn / frontend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

前端文档

Travis Status

介绍

前端部分使用 React 开发,使用技术或内容包括:

  1. React.JSNext.JS。本项目的核心,用后者创建项目基础,不多说。
  2. TailwindCSS项目 CSS 模块;Material-UI,用了部分图标。
  3. Express.js做 proxy。Elastic 新版不能通过客户端直接连接,转向使用 url 类型来连接。Express 在这起代理作用。
  4. 使用PM2让 js 后台运行。

其他可见package.json

运行方式

安装 nvm 后,使用 nvm 安装 Node 16版本

进入主仓库,根据不同执行对应代码

  • dev: npm run dev
  • prod: npm run build && pm2 start ecosystem.config.js --env production

遇到的问题及解决方式

  1. 尝试直接通过带用户名和密码绕过去 index.js:1 Error: TypeError: Failed to execute 'fetch' on 'Window': Request cannot be constructed from a URL that includes credentials: http://elastic:CHANGEME@localhost:9200/test/\_search?q=2020

  2. header 值不相等 Access to fetch at 'http://localhost:3200/api/search?q=' from origin 'http://localhost:3000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost' that is not equal to the supplied origin. Have the server send the header with a valid value, or, if an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. 精确到对应端口

  3. The locked read-only property of the ReadableStream interface returns whether or not the readable stream is locked to a reader. 参考这篇Stack Overflow回答

  4. ReadableStream.locked 对 res.data 用.json()或.text()“解锁”

  5. Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.

Check the render method of Search.

常在 this.setState 报错,用[]{}包裹对应的值

  1. Router.push()不起作用 event.preventDefault(); 这行代码忽略报错,不要删除,删除会导致页面刷新时发生错误

  2. 受精力限制,如今测试部分没有有效代码

About

License:MIT License


Languages

Language:JavaScript 90.4%Language:CSS 9.3%Language:Shell 0.2%