类视图: 1. 定义视图函数只能使用get方法进行访问,如果出现了没有定义的方法,那么就将这个请求转换为http_method_not_allowed(request, args, kwargs)。 views.py文件中示例代码如下: ==注意:这里定义的类一定要继承View,如果没有继承的话,在 ...
分类:
其他好文 时间:
2020-02-11 00:11:43
阅读次数:
58
安装 Microsoft.AspNetCore.Mvc.Newtonsoft 包 在startup.cs中添加 public void ConfigureServices(IServiceCollection services) { services.AddControllers(); servic ...
分类:
Web程序 时间:
2020-02-09 16:40:42
阅读次数:
135
1、老生常谈,项目创建 djangoadmin startproject MZMARKET djangoadmin startapp App # setting修改 # 允许所有IP访问 ALLOWED_HOSTS = ["*"] # App注册, debug_toolbar注册 INSTALLED ...
分类:
其他好文 时间:
2020-02-09 10:01:29
阅读次数:
125
# -*- coding: utf-8 -*- import scrapy from ybdlspider.items import YbdlspiderItem import re class YbSpider(scrapy.Spider): name = 'yb' allowed_domains ...
分类:
其他好文 时间:
2020-02-09 09:18:31
阅读次数:
72
settings.py #上传图片的类型 ALLOWED_IMG_TYPE = ['jpg','png','PNG'] #上传图片的地址 UPLOAD_ADDRESS = 'static/upload/' STATIC_URL = '/static/' #配置静态文件夹 STATICFILES_DI ...
分类:
Web程序 时间:
2020-02-05 18:54:42
阅读次数:
105
难点一个一个解决,现在遇到的错误如下: Navigating to current location ("/login") is not allowed 网上也有两大解决办法, 一种是重写push或是降低版本 https://blog.csdn.net/wumingid/article/detail ...
分类:
其他好文 时间:
2020-02-02 12:18:26
阅读次数:
79
adb shell pm list packages -3 |grep neteas* monkey -h usage: monkey [-p ALLOWED_PACKAGE [-p ALLOWED_PACKAGE] ...] [-c MAIN_CATEGORY [-c MAIN_CATEGORY] ...
分类:
其他好文 时间:
2020-01-30 17:22:26
阅读次数:
102
| 分类 leetcode | Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array nums = [1,1,1,2,2,3],You... ...
分类:
其他好文 时间:
2020-01-29 12:53:10
阅读次数:
91
问题出现场景: 在windows端使用navicat链接云服务器Centos上的mysql数据库时,出现如下错误: ERROR 1130: Host 124.23.133.** is not allowed to connect to this MySQL server 通过查询得到以下三种解决办法 ...
分类:
数据库 时间:
2020-01-28 12:33:06
阅读次数:
77
// eslint exercise 1 (no-console) // When you're finished with this exercise, run // "npm start exercise.eslint.2" // to move on to the next exercise ...
分类:
其他好文 时间:
2020-01-23 21:18:20
阅读次数:
104