自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (5)
  • 收藏
  • 关注

原创 djangorestframework_simplejwt4.6.0与django3.2.3+python3.9.4+djangorestframework3.12.4配置

djangorestframework_simplejwt4.6.0与django3.2.3+python3.9.4+djangorestframework3.12.4配置(部分代码省略只展示重点部分)虚拟环境中安装 pip3 install djangorestframework_simplejwt(这里其它配置不做详细说明只配置djangorestframework_simplejwt)1.settings.py配置文件设置REST_FRAMEWORK = { 'DEFAULT_S

2021-05-18 19:50:32 423

原创 Centos8.3UEFI版配置python3.9.4与django3.2虚拟环境maridb+nginx+uwsgi

第一步 安装python3.9.41。安装依赖dnf groupinstall 'development tools'dnf install bzip2-devel expat-devel gdbm-devel ncurses-devel openssl-devel readline-devel sqlite-devel tk-devel xz-devel zlib-devel wgetdnf install libffi-devel -y2。下载wget https://www.p

2021-05-03 18:32:46 177

原创 uni-app开发微信小程序个人中心页面适用头条/百度/支付宝小程序

<template> <view class="container"> <view class="user-section"> <image class="bg" src="/static/user-bg.jpg"></image> <view cl...

2020-03-02 14:38:46 7912 1

原创 js中删除json数据多余不要的数据

const res = cmqm.map(item => { delete item.explanation delete item.more return item});console.log(JSON.stringify(res))

2020-03-02 12:28:42 1395

原创 django在线启动爬虫

#在线启动爬虫重点部分def start_scrapy(request): # 获取页面传参,要区分请求类型是POST还是GET,不同请求用不同的方法接收参数 year = request.POST.get('year') jd = request.POST.get('jd') url = 'http://127.0.0.1:6800/schedule.json'...

2019-10-01 14:04:47 1008

原创 django1.11.5版本中后台字段类型提示错误解决方法,个人资料分表方法用一对一关联

(python3.6.2+django1.11.5) 重点返回类型要这样写, return u’%s’ % self.qq 否则类型不对会报错,如果类型对在后也是必填项,用上面写法才能正常注册用户from django.db import models class User(models.Model): username = models.CharField(verbose_nam

2017-09-15 16:21:37 315

原创 django1.11.5版本在后台显示图片方法,

admin.py中list_display = ['id','Photo']def Photo(self,obj):return '/static/image/%s" height="22" width="22" />' %(obj.headPhoto)Photo.allow_tags = TruePhoto.short_description = "头像"

2017-09-15 15:13:04 365

原创 django 1.11.5与python3.62实现简单的 注册,登录与修改密码

1:创建modlefrom django.db import modelsimport django.utils.timesince as timesincefrom django.contrib.auth.models import Userclass User(models.Model):    phone=models.CharField(verbose_name

2017-09-09 17:16:29 812

原创 react-native Modal使用

import React, {Component} from 'react';import {  Modal,  Text,  Image,  TouchableHighlight,  View,  StyleSheet,  ScrollView,  TouchableOpacity} from 'react-native';var width

2017-07-16 15:55:26 310

city.js 三级省市区城市数据js文件,js可以随时调用

city.js 三级省市区城市数据js文件,js可以随时调用,自用数据保留备份 export default[ {id: 1, name: '北京市', city: [ {id: 1, name: '北京市', district: [ {id: 1, name: '东城区'},

2020-03-04

python城市数据,单独的市区,单独的省市区三级二个文件,附城市区二级导入mysql数据库代码

import os import sys pwd = os.path.dirname(os.path.realpath(__file__)) sys.path.append(pwd+"../") os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings") import django django.setup() from apps.city.models import CityCategory from db.data.city_data import data for a in data: x1 = a["parent"] if x1 == "" : a_intance = CityCategory() a_intance.name = a["name"] a_intance.coding = a["value"] a_intance.city_type = 1 a_intance.save() for b in data: y2 = a_intance.coding x2 = b["parent"] if x2 == y2: b_intance = CityCategory() b_intance.name = b["name"] b_intance.coding = b["value"] b_intance.city_type = 2 b_intance.parent_category = a_intance b_intance.save() for c in data: y3 = b_intance.coding x3 = c["parent"] if x3 == y3: c_intance = CityCategory() c_intance.name = c["name"] c_intance.coding = c["value"] c_intance.city_type = 3 c_intance.parent_category = b_intance c_intance.save()

2020-03-04

测名三才三运配置json文档,js中可直接调用

测名三才三运配置json文档,js中可直接调用

2020-03-02

js调用测名81数理json文档,vue/小程序直接可用

js调用测名81数理json文档,vue/小程序直接可用

2020-03-02

汉语字典数据库包含 16142个

汉语字典数据库包含 16142个中文单字的拼音、五笔、部首、笔画、释义、详解、说文等。 汉语字典数据库包含 16142个中文单字的拼音、五笔、部首、笔画、释义、详解、说文等。 汉语字典数据库包含 16142个中文单字的拼音、五笔、部首、笔画、释义、详解、说文等。

2020-03-01

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除