3.7、使用 JSON 和 AJAX傳遞api數(shù)據(jù)(使用vue和reqwest實(shí)現(xiàn)用其它網(wǎng)站獲取數(shù)據(jù)并傳入本網(wǎng)站(My height is 189 cm))
3.2
前后端通過json進(jìn)行交互
vue.js代替templetes

UC截圖20170417234705.png

UC截圖20170417234154.png

UC截圖20170417235153.png

3.2刪廣告
3.2實(shí)戰(zhàn)刪廣告

1

2
3.3

添加script

尾端添script,script內(nèi)部

UC截圖20170418203928.png

UC截圖20170418210546.png

UC截圖20170418211507.png

有需要時(shí),將style移至body中
在body里寫{{ article.title }}即可看到This is a title

UC截圖20170418211847.png

UC截圖20170418212327.png

UC截圖20170418212438.png

UC截圖20170418183533.png

UC截圖20170418201757.png

UC截圖20170419211014.png

UC截圖20170419212435.png

UC截圖20170419235030.png
3.4

UC截圖20170420002104.png

UC截圖20170420002121.png
script中的True,第一個(gè)字母不大寫(true)才能發(fā)揮效果
<div class="ui action fluid input">
<input type="text" placeholder="添加新任務(wù)" v-model="message">
<button class="ui icon basic button">
<i class="plus icon" style="color:#666666" v-on:click="AddNew(message)"></i>
</button>
</div>
methods:{
AddNew:function(message){
this.tasks.push({todo:message,yes:true,show:true})
}
},
要綁定v-model才能傳數(shù)據(jù)

UC截圖20170419211014.png

UC截圖20170419212435.png

UC截圖20170419235030.png

UC截圖20170420185224.png

UC截圖20170420185952.png

UC截圖20170420195843.png

UC截圖20170422131842.png

UC截圖20170422131905.png

UC截圖20170422132834.png

UC截圖20170424180043.png

UC截圖20170424180143.png

UC截圖20170424181926.png
models-views-(json)-vue.js
model-(序列化)-字典-json-views
1.創(chuàng)建views的同級文件api.py,import在models里需要的類,引用rest_framework相關(guān)文件,在settings的installed apps里添加rest_framework

序列化器
fields='__all__'
編寫一個(gè)視圖(定義函數(shù))

UC截圖20170424232218.png
urls添加
{% verbatim %}
django別渲染{}
{% endverbatim %}
get-查
post-增
put-改
delete-刪
在settings的installed apps里添加rest_framework.authtoken(make migrations)
token 不能加在data,而是加在header中

感謝老師,感謝老師呀

UC截圖20170425220657.png

UC截圖20170425221214.png

UC截圖20170425222901.png

UC截圖20170425234339.png

UC截圖20170426233739.png

UC截圖20170426234104.png

UC截圖20170426234354.png

UC截圖20170426234811.png

UC截圖20170426235211.png

UC截圖20170426235755.png

UC截圖20170424232218.png

UC截圖20170424234818.png