vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析

Posted 锋少的技术博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析相关的知识,希望对你有一定的参考价值。

vue使用this.$http.getthis.$http.post传参

get传参方式

this.$http.get('http://localhost:8080/testApi', 
  params: 
    name: "张三",
    phone: "13888888888"
   
).then((res) => 
  console.log('请求完成')
);

post传参方式

this.$http.get('http://localhost:8080/testApi', 
    name: "张三",
    phone: "13888888888"
).then((res) => 
  console.log('请求完成')
);

vuecreatedmounted区别

created:在模板渲染成html前调用,即通常初始化某些属性值,然后再渲染成视图。一般数据请求后赋值操作在次执行。

mounted:在模板渲染成html后调用,通常是初始化页面完成后,再对html的dom节点进行一些需要的操作。


vue富文本解析

data() 
    return 
      content: [], //保存后端请求的富文本
    ;
,

created() 
	// 富文本请求并赋值
    this.$http.post('http://localhost:8080/contentApi', ).then((res) => 
      if (res.data.code == 100) 
        this.content = res.data.content;
      
    );
,

// 富文本解析展示
<p v-html="content"></p>

以上是关于vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析的主要内容,如果未能解决你的问题,请参考以下文章

vue基本知识回顾 | this.$http.get 和 this.$http.post传参 / created与mounted区别 / 富文本解析

VUE基础回顾6

对各类知识点的回顾

$Django 路飞之小知识回顾,Vue之样式element-ui,Vue绑定图片--mounted页面挂载--路由携带参数

java基础知识回顾-7(private,this,继承)

JavaEE学习记录2(JavaOO 知识回顾)