from flask import Flask from flask_restful import Api,Resource app = Flask(__name__) api = Api(app) class HelloWorld(Resource): def get(self): return ...
分类:
其他好文 时间:
2021-04-13 12:26:40
阅读次数:
0
###前言 threejs中想实现模型模型透明,显示里面模型的效果。 ###尝试 首先肯定是拿两个几何体进行尝试,其实只要在材质中开启透明和设置透明度就好了,如果没效果,建议更换材质试试。 var material = new THREE.MeshBasicMaterial({ transparen ...
分类:
Web程序 时间:
2021-04-10 13:38:26
阅读次数:
0
#include <bits/stdc++.h> using namespace std; template<class ElemType> struct BiNode { ElemType data; BiNode<ElemType> *lchild, *rchild; int disToLeft ...
分类:
其他好文 时间:
2021-04-10 13:18:26
阅读次数:
0
描述 原地翻转给出的数组 nums 原地意味着你不能使用额外空间 样例 样例 1: 输入 : nums = [1,2,5] 输出 : [5,2,1] class Solution: """ @param nums: a integer array @return: nothing """ def r ...
分类:
编程语言 时间:
2021-04-10 13:11:25
阅读次数:
0
以下是针对移动端所设计的样式,如需pc端的请自行更改 window.onload = function(){ window.alert = function(msg, callback) { var div = document.createElement("div"); div.innerHTML ...
分类:
其他好文 时间:
2021-04-09 13:35:30
阅读次数:
0
234. 回文链表 题目描述: ? 请判断一个链表是否为回文链表。 # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None im ...
分类:
其他好文 时间:
2021-04-09 13:34:58
阅读次数:
0
描述 给出一个字符c,你需要判断它是不是一个数字字符或者字母字符。 如果是,返回true,如果不是返回false。 如果您使用的是Python语言,那么输入将是一个长度为1的字符串。 样例 样例 1: 输入:'1' 输出:true class Solution: """ @param c: A ch ...
分类:
其他好文 时间:
2021-04-09 13:14:43
阅读次数:
0
例子 from rest_framework.views import APIView class StudentAPIView(APIView): def get(self, request): pk = request.query_params.get(pk) student_obj = Stu ...
分类:
Web程序 时间:
2021-04-08 13:26:42
阅读次数:
0
一、Dialog布局文件 <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill ...
分类:
移动开发 时间:
2021-04-07 11:01:03
阅读次数:
0
# @Filename: search_document.py import os,re import shutil import pandas as pd import time class atom_file(object): def re_doucement(self,path,pattern ...
分类:
其他好文 时间:
2021-04-06 14:59:44
阅读次数:
0