首先导入
html样式:
<article id="news_content" v-for="item in items">
<div class="col-1-2 right">
<img :src="item.coverimage"/>
<div class="col-1-2 right">
<img :src="item.coverimage"/>
{{item.releasetime}}
{{item.title}}
{{item.author}}
{{item.content}}
nofollow" class="more">阅读全文js部分:
注意:返回的json数组 并不需要JSON.stringify(data) 转成json字符串 items 这里需要的是json对象
当然 官网上推荐的是使用axios npm这种方式。
以上这篇vue.js配合$.post从后台获取数据简单demo就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/vue/31070.html