function saveConfig() { var configName = document.title; if (!localStorage) return; var Config = {}; var index = 0; var inputs = $('#searchForm input'); inputs.each(function (ind, input) { var type = input.type; switch (type) { case "text": Conf
1.先看一下 Model 非常多 from django.db import models from users.models import UserProfile # Create your models here. class Edc_Project(models.Model): project_name = models.CharField(max_length=200, verbose_name="项目名称", default="") project_num