首页 > 其他分享 >4.8

4.8

时间:2024-04-08 18:34:47浏览次数:22  
标签:category vue 4.8 01 result article data

vue:

 

 

 

 

 

 

 

 

 

 

 

 

 掌握一下代码即入门vue:

<!DOCTYPE html> <html lang="en">
<head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Document</title> </head>
<body>     <div id="app">
        文章分类: <input type="text" v-model="searchConditions.category">
        发布状态: <input type="text"  v-model="searchConditions.state">
        <button v-on:click="search">搜索</button>
        <br />         <br />         <table border="1 solid" colspa="0" cellspacing="0">             <tr>                 <th>文章标题</th>                 <th>分类</th>                 <th>发表时间</th>                 <th>状态</th>                 <th>操作</th>             </tr>             <tr v-for="(article,index) in articleList">                 <td>{{article.title}}</td>                 <td>{{article.category}}</td>                 <td>{{article.time}}</td>                 <td>{{article.state}}</td>                 <td>                     <button>编辑</button>                     <button>删除</button>                 </td>             </tr>             <!-- <tr>                 <td>标题2</td>                 <td>分类2</td>                 <td>2000-01-01</td>                 <td>已发布</td>                 <td>                     <button>编辑</button>                     <button>删除</button>                 </td>             </tr>             <tr>                 <td>标题3</td>                 <td>分类3</td>                 <td>2000-01-01</td>                 <td>已发布</td>                 <td>                     <button>编辑</button>                     <button>删除</button>                 </td>             </tr> -->         </table>     </div>     <!-- 导入axios的js文件 -->     <script src="https://unpkg.com/axios/dist/axios.min.js"></script>     <script type="module">         //导入vue模块         import {createApp} from 'https://unpkg.com/vue@3/dist/vue.esm-browser.js';         //创建vue应用实例         createApp({             data(){                 return {                     articleList:[],                     searchConditions:{                         category:'',                         state:''                     }                 }             },             methods:{                 //声明方法                 search:function(){                     //发送请求,完成搜索,携带搜索条件                     axios.get('http://localhost:8080/article/search?category='+this.searchConditions.category+'&state='+this.searchConditions.state)                     .then(result=>{                         //成功回调 result.data                         //把得到的数据赋值给articleList                         this.articleList=result.data                     }).catch(err=>{                         console.log(err);                     });                 }             },             //钩子函数mounted中,获取所有文章数据             mounted:function(){                 //发送异步请求  axios                 axios.get('http://localhost:8080/article/getAll').then(result=>{                     //成功回调                     //console.log(result.data);                     this.articleList=result.data;                 }).catch(err=>{                     //失败回调                     console.log(err);                 });             }         }).mount('#app');//控制html元素     </script> </body>
</html>

标签:category,vue,4.8,01,result,article,data
From: https://www.cnblogs.com/fengjiale/p/18120920

相关文章

  • 云原生周刊:2024 年 K8s 基准报告 | 2024.4.8
    开源项目推荐ArgoCDImageUpdaterArgoCDImageUpdater是一个自动更新ArgoCD管理的Kubernetes工作负载容器镜像的工具。简而言之,它将跟踪ArgoCD应用程序资源上的注释指定的图像版本,并通过使用ArgoCDAPI设置参数覆盖来更新它们。目前,它仅适用于使用Kustomize......
  • 2024.4.8 pytorch框架初上手
    pytorchPyTorch是一个针对深度学习,并且使用GPU和CPU来优化的tensorlibrary(tensor库)中文文档:https://pytorch.org/resources梯度/导数计算#linear.pyimporttorchimportnumpyasnpx=torch.tensor(3,)w=torch.tensor(4.,requires_grad=True)b=t......
  • eclipse 4.8安装fat报错
      Anerroroccurredwhileinstallingtheitemssessioncontextwas:(profile=epp.package.jee,phase=org.eclipse.equinox.internal.p2.engine.phases.Install,operand=null-->[R]net.sf.fjep.fatjar0.0.31,action=).FailedtopreparepartialIU:[R]net.sf.......
  • 基于 MCSDK5.4.8 电机库修改两电阻采样方法
    1.前言在当前使用的电机电阻采样方式中分为单电阻,双电阻,三电阻三种方式,其中在STMCSDK5.4库中支持了两种采样方式,单电阻和三电阻,在市面还存在另外一种采样方式,即双电阻采样,本文讨论的是如何修改现有驱动库支持该种采样方式。2.电流双电阻采样机理图1.双电阻采样结......
  • [c++/gcc] Centos 7.9升级 gcc 4.8.5 到 gcc11 [转]
    0序本文背景:因在centos7.9server上安装nodejs21.7.1,编译nodejs时,依赖了gnu17/gcc11。例如:遇到Qtrequiresc++11support、-std=gnu++17例如:编译器不支持c++17,就会提示:g++:error:unrecognizedcommandlineoption‘-std=c++17’例如:编译器不支持c++17,就会提示:g++:......
  • .NET Framework 4.8 Web API+Entity Framework(实现增删改查)
    1、首先,创建一个新的.NETFramework4.8WebAPI项目。2、定义Student类:publicclassStudent{publicintId{get;set;}publicstringName{get;set;}publicintAge{get;set;}}3、创建DbContext类:usingSystem.Data.Entity;publicclassS......
  • Win7离线安装.Net 4.8
    安装补丁:先打上一个KB2813430的补丁,然后再安装net-framework4.8即可成功。32位系统补丁下载地址:https://www.microsoft.com/zh-CN/download/details.aspx?id=3911064位系统补丁下载地址:https://www.microsoft.com/zh-CN/download/details.aspx?id=39115安装补丁后还不行下载......
  • c# 4.8 实现Windows 定时任务计划(Task Scheduler)
    分享一个我自己写的 Windows定时任务计划(TaskScheduler)动态创建代码,没做太多封装,留个实现笔记首先封装一个简单配置项的类publicclassTaskSchedulerConfig{///<summary>///引用程序路径///</summary>publicstringApplicationPath{get;set;......
  • c# 4.8 实现Windows 定时任务计划(Task Scheduler)
    分享一个我自己写的 Windows定时任务计划(TaskScheduler)动态创建代码,没做太多封装,留个实现笔记首先封装一个简单配置项的类1publicclassTaskSchedulerConfig2{3///<summary>4///引用程序路径5///</summary>6publicstringApplicati......
  • CSharp: iText 8.0 in donet 4.8.1
     usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.IO;usingSystem.Text;usingiText.IO.Font;usingiText.IO.Image;usingiText.Kernel.Font;usingiTe......