成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

如何在Django后端中查詢一定時(shí)間段內(nèi)的數(shù)據(jù)-創(chuàng)新互聯(lián)

如何在Django后端中查詢一定時(shí)間段內(nèi)的數(shù)據(jù)?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)中從網(wǎng)站色彩、結(jié)構(gòu)布局、欄目設(shè)置、關(guān)鍵詞群組等細(xì)微處著手,突出企業(yè)的產(chǎn)品/服務(wù)/品牌,幫助企業(yè)鎖定精準(zhǔn)用戶,提高在線咨詢和轉(zhuǎn)化,使成都網(wǎng)站營(yíng)銷成為有效果、有回報(bào)的無(wú)錫營(yíng)銷推廣。創(chuàng)新互聯(lián)建站專業(yè)成都網(wǎng)站建設(shè)10多年了,客戶滿意度97.8%,歡迎成都創(chuàng)新互聯(lián)客戶聯(lián)系。

后端數(shù)據(jù)庫(kù)

這里是一些簡(jiǎn)單的數(shù)據(jù)重要的是date,我們需要根據(jù)日期來(lái)篩選返回到前端。

如何在Django后端中查詢一定時(shí)間段內(nèi)的數(shù)據(jù)

models.py

class CountDownSign(models.Model):
 name = models.CharField(max_length=1000) 
 date = models.DateField() 
 sign = models.CharField(max_length=200)

serializers.py

這里引入的是drf框架,但篩選查詢的思路和這個(gè)框架沒(méi)有關(guān)系。

class CountDownModelSerializer(serializers.ModelSerializer):
 class Meta:
 model = CountDownSign
 fields = '__all__'

 def create(self, validated_data):
 return CountDownSign.objects.create(**validated_data)

 def update(self, instance, validated_data):
 instance.name = validated_data.get('name', instance.name)
 instance.date = validated_data.get('date', instance.date)
 instance.sign = validated_data.get('sign', instance.sign)
 instance.save()
 return instance

views.py

為篩選查詢提供接口。拿到前端傳遞的起止日期。核心代碼如下

obj = models.CountDownSign.objects.filter(date__range=(start, end))
class CountDownViewSet(ModelViewSet):
 parser_classes = [JSONParser, FormParser]
 """視圖集"""
 queryset = models.CountDownSign.objects.all()
 serializer_class = CountDownModelSerializer
 # 搜索
 search_fields = ('id', 'name', 'sign', 'date')
 
 @action(methods=['post'], detail=False)
 def getSE(self, request, *args, **kwargs):
 start = request.data.get('start', None)
 end = request.data.get('end', None)
 if start and end:
  obj = models.CountDownSign.objects.filter(date__range=(start, end))

  if obj:
  ser = CountDownModelSerializer(instance=obj, many=True)
  print(ser.data)
  return JsonResponse({
   'code': '200',
   'msg': '獲取數(shù)據(jù)成功',
   'data': ser.data
  })
  else:
  return JsonResponse({
   'code': '1002',
   'msg': '獲取失敗',
  })
 else:
  return Response(status=status.HTTP_204_NO_CONTENT)

前端界面

這里簡(jiǎn)略給出用于接收起止時(shí)間的兩個(gè)date-picker,并且給搜索綁定事件。

 <div class="datePicker">
 <div class="block" >
 <el-date-picker
  v-model="value1"
  type="datetime"
  value-format="yyyy-MM-dd"
  placeholder="請(qǐng)選擇選擇開(kāi)始日期">
 </el-date-picker>
 </div>
 <div class="block" >
 <el-date-picker
  v-model="value2"
  type="datetime"
  value-format="yyyy-MM-dd"
  placeholder="請(qǐng)選擇截止日期">
 </el-date-picker>
 </div>
 <el-button round  @click="searchC">搜索</el-button>
 </div>

data.js


實(shí)現(xiàn)的接口函數(shù)

export function searchCountDown(start, end) {
 return request({
 url: 'countDown/getSE/',
 method: 'post',
 data: {
  start: start,
  end: end
 }
 })
}

點(diǎn)擊事件的實(shí)現(xiàn)

判斷輸入的合法性,并接受數(shù)據(jù)進(jìn)行數(shù)據(jù)綁定展示

searchC() {
 console.log(this.value1);
 console.log(this.value2);
 if (this.value1 < this.value2) {
 searchCountDown(this.value1, this.value2).then(res => {
  console.log(res.data);
  this.searchRes = res.data;
 })
 } else {
 this.$message.error("時(shí)間范圍出錯(cuò)");
 }
 },

數(shù)據(jù)展示

 <div class="article">
 <ul>
 <li v-for="(item,index) in searchRes">
  <div class="ui grid" >
  <div class="four wide column"><span>{{ item.name }}</span></div>
  <div class="four wide column"><span>{{ item.date }}</span></div>
  <div class="four wide column"><span>{{ item.sign }}</span></div>
  <div class="four wide column">
  <el-button type="danger" icon="el-icon-delete" circle @click="deleteC(item.id)"></el-button>
  <el-button type="primary" icon="el-icon-edit" circle></el-button>
  </div>
  </div>
  <div class="ui divider"></div>
 </li>
 </ul>

運(yùn)行結(jié)果

可以看到返回的數(shù)據(jù)均是在時(shí)間范圍內(nèi),這里的2月25號(hào)零時(shí)其實(shí)返回的數(shù)據(jù)是2月5號(hào),因?yàn)檫M(jìn)行了數(shù)據(jù)格式化,所以25號(hào)的數(shù)據(jù)也被返回了。

如何在Django后端中查詢一定時(shí)間段內(nèi)的數(shù)據(jù)

看完上述內(nèi)容,你們掌握如何在Django后端中查詢一定時(shí)間段內(nèi)的數(shù)據(jù)的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

當(dāng)前文章:如何在Django后端中查詢一定時(shí)間段內(nèi)的數(shù)據(jù)-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://jinyejixie.com/article30/djeoso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、網(wǎng)站營(yíng)銷網(wǎng)站收錄全網(wǎng)營(yíng)銷推廣、動(dòng)態(tài)網(wǎng)站服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁(yè)設(shè)計(jì)公司
静宁县| 乌海市| 北安市| 漳浦县| 民县| 科技| 雷州市| 方山县| 佛山市| 长白| 山西省| 平舆县| 安图县| 营山县| 江华| 会宁县| 颍上县| 甘洛县| 新竹县| 涞水县| 屏东县| 改则县| 桃源县| 汉川市| 全南县| 房产| 米易县| 利津县| 特克斯县| 长武县| 托克托县| 甘德县| 文登市| 洛南县| 武威市| 清河县| 拜泉县| 南平市| 自治县| 顺平县| 三都|