1.介绍 安装 pip install djangorestframework 注册:在INSTALLED_APPS列表中写:”rest_framework” drf框架的封装风格: import rest_framework from rest_framework.views import Vie ...
分类:
其他好文 时间:
2020-06-16 23:52:56
阅读次数:
86
记一道存在过滤的模板注入的题。直接给源代码 import flask import os app = flask.Flask(__name__) app.config['FLAG'] = os.environ.pop('FLAG') @app.route('/') def index(): retu ...
分类:
其他好文 时间:
2020-06-16 23:47:40
阅读次数:
155
odoo里视图模型MVC模式: 例子:在原来的视图上修改他: var CustomRenderer = KanbanRenderer.extend({ ....});var CustomRendererModel = KanbanModel.extend({ ....});var CustomRen ...
分类:
其他好文 时间:
2020-06-16 23:39:13
阅读次数:
191
暴力法计算所有可能的交易组合相对应的利润,并找出它们其中的最大利润。Python3class Solution: def maxProfit(self, prices: List[int]) -> int: return self.calculate(prices, 0) def calculate... ...
分类:
其他好文 时间:
2020-06-16 23:27:59
阅读次数:
60
[root@zf-test-web01-4 ~]# file /bin/ls #"/bin/ls" is a binary file /bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (u ...
分类:
系统相关 时间:
2020-06-16 14:52:43
阅读次数:
54
package com.android.demo.lileidemo.utils;import android.Manifest;import android.content.Context;import android.content.pm.PackageManager;import androi ...
分类:
其他好文 时间:
2020-06-16 14:43:38
阅读次数:
68
解决方法: do_install() { install -d ${D}${libdir} cp -a --no-preserve=ownership ${S}/libsample.so.3.5 ${D}${libdir} ln -sf libsample.so.3.5 ${D}${libdir}/ ...
分类:
其他好文 时间:
2020-06-15 17:39:20
阅读次数:
122
此枚举指示空间结构元素或代理的组成。IFC2x中增加的新枚举 ConstantDescription COMPLEX A group or aggregation of similar elements. ELEMENT An (undivided) element itself. PARTIAL ...
分类:
编程语言 时间:
2020-06-15 10:28:07
阅读次数:
63
使用mnist数据集实现手写数字识别是入门必做吧。这里使用pyTorch框架进行简单神经网络的搭建。 首先导入需要的包。 1 import torch 2 import torch.nn as nn 3 import torch.utils.data as Data 4 import torchvi ...
分类:
其他好文 时间:
2020-06-14 19:02:50
阅读次数:
76
" __ _____ __ __ ____ ____ ____ ___ _ _ _____ ___ ____ " \ \ / /_ | / | _ \ / | / / _ | \ | | _| / | " \ \ / / | || |/| | |) | | | | | | | | | | | | | ...
分类:
系统相关 时间:
2020-06-14 18:40:02
阅读次数:
118