- 博客(21)
- 收藏
- 关注
原创 给定两个整数,被除数 dividend 和除数 divisor。将两数相除,要求不使用乘法、除法和 mod 运算符。
记录自己坑了又坑的每一天:原题:给定两个整数,被除数 dividend 和除数 divisor。将两数相除,要求不使用乘法、除法和 mod 运算符。返回被除数 dividend 除以除数 divisor 得到的商。示例 1:输入: dividend = 10, divisor = 3输出: 3示例 2:输入: dividend = 7, divisor = -3...
2018-10-27 19:55:33 3763
原创 leetcode 三数之和(js实现)
本题来自于leetcode, 以下为题目:给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。注意:答案中不可以包含重复的三元组。例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],满足要求的三元组集合为:[ [-1, 0, 1], [-...
2018-10-20 21:33:22 2877 1
原创 django 后台接收不到 axios 传递的参数
axios 的默认的提交方式为 application/json , 此方式提交的数据的格式为json字符串的格式,如下:而在后台,我获取值的方式为 “键 -- 值”的形式,所以,结果是失败的,因此我们就要修改对数据进行修改;1、安装 qs : npm install qs --save-dev (本地) ;2、导入 : import qs from 'qs' ;3、利用 qs.stringi...
2018-06-12 20:00:23 1606
原创 python django有关跨域请求的设置
项目架构为 python + react1、安装 pip install django-cors-headers 2、配置 settings.py 文件 INSTALLED_APPS = [ ...... 'corsheaders', ...... ] MIDDLEWARE = [ ...... 'corshe...
2018-06-12 16:33:10 818
原创 django与react的结合
初学react,在学完基本的语法之后,想要做一个基本的小demo出来,首先分别建好一个python的项目,我使用的框架为django,然后再创建好一个react的项目,接下来就是django与react的结合了(嗯,困扰了我一天多的问题)。首先,将react项目进行编译打包(由于我创建react项目用的是create-react-app,所以直接运行npm run start就可以了),完成后会生...
2018-05-05 20:57:37 8005
原创 react报错Element type is invalid: expected a string (for built-in components) or a class/function (for
react报错Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.login.jsimport React, { Component } from 'react';// import lo...
2018-05-04 15:46:20 8509
原创 react-hot-loader 配置
报错:配置方法:修改:在webpack 配置文件中去掉 ‘react-hot-loader/webpack' .labelrc 文件添加:"plugins": ["react-hot-loader/label"]
2018-04-15 14:52:53 653
原创 webpack配置报错
错误:ERROR in ./react/index.jsModule parse failed: Unexpected token (8:12)You may need an appropriate loader to handle this file type.|| return(| <h1>123</h1>| )|...
2018-04-14 20:59:19 2842
原创 webpack打包(版本:4.5.0)
webpack打包要安装webpack 和 webpack-cli一、配置webpack.config.js文件const htmlWebpackPlugin = require('html-webpack-plugin'); //自动生成html文件const config = { //打包单个文件 entry: __dirname + "/app/index.js", ...
2018-04-12 16:56:24 815
原创 webpack打包报错
错误 :ERROR in ./app/style.cssModule parse failed: Unexpected token (1:3)You may need an appropriate loader to handle this file type.| div{| border: 2px solid red;| font-size: 50px; @ ./app/inde...
2018-04-11 22:00:17 680
原创 SyntaxError: .../react-example/test.jsx: Unexpected token
SyntaxError: C:/Users/.../.../react-example/test.jsx: Unexpected token (10:48) 8 | describe('Card component', function(){ 9 | it('should exist', function(){> 10 | let card = TestUti...
2018-04-08 16:06:05 778
原创 python 报错 No module named Crypto.Cipher
需要安装一个包 : pip install pycrypto如果依然报错,需要卸载掉 Crypto 和 Cipher 这两个安装包命令:pip uninstall Crypto pip uninstall Cipher
2018-03-29 22:03:48 9649 2
原创 bind(this) 的使用
为什么使用 bind(this) ? 当点击事件触发的函数里有使用 this 的时候,就需要使用 bind(this),不然 this 是 null,如果没绑定this应该是全局window。 <div className="save" onClick={this.handleClick.bind(this)}>Save</div>参考文章: https:...
2018-03-25 10:47:14 4222
原创 react中this.refs['title']报错title未定义
原例:handleForm(e){ e.preventDefault(); console.log(this.refs['title'].value) const newQuestion = { title: this.refs['title'].value, voteCount: 0, } ...
2018-03-25 10:41:40 1242
原创 在使用函数式 setState 时报错 this.setState is not a function
在react中点击事件里面 setState 时会使this重新定义,所以在点击的函数里面使用this.setState()时会报错this.setState not a function,因此需要提前给点击事件的函数绑定this...
2018-03-23 21:41:59 8485
原创 react 中有关 setState 的学习
state用于设置默认值,在constructor 中使用,在修改默认值时 使用 this.setState() 坑在此处 !!!!this.setState 并不会实时更新 state 的值,而是首先要将所有对象合并到一起,然后仅用该对象进行一次“set-State”例如: 面对这种 多次 setState() 调用 的情况,为了避免重复做上述...
2018-03-23 21:36:30 360
原创 './QuestionApp.js' does not contain an export named 'QuestionApp'.
报错原因:导出方式不对export default : 为模块指定默认输出 并不是命名导出在导入的时候要以下面这种方式: 例如: import App from './app.js';
2018-03-21 21:00:40 1657
原创 expected a string (for built-in components) or a class/function (for composite components) but got:
出错案例为模块化组件:由于没有写 module.export 而报的这个错误
2018-03-17 21:42:11 6742
原创 React.createClass is not a function
在React16以上,已经摒弃了 React.createClass() 这个方法取而代之的是 class Welcome extends React.Component{}
2018-03-17 21:39:03 2997
原创 React报错this.getDOMNode is not a function
在React0.14后,getDOMNode()已经被移除可使用 ReactDOM.findDOMNode(this)来获取节点
2018-03-14 20:35:15 2282
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人