开发者学堂课程【Vue.js 入门与实战:品牌列表-全局配置 emulateJSON 选项】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/586/detail/8163
品牌列表-全局配置 emulateJSON 选项
全局配置 emulateJSON 选项
add() {// 添加品牌列表到后台服务器
this.$http,get('api/addproduct',{name:this.name },{emulateJSON:true }).then(result => {
if (result.status === 0) {
//成功了
//添加完成后,只需要手动,在调用一下 getAllList 就能刷新品牌列表了
this.getALLlist()
//清空 name
this.name = ''
} else {
//失败了
alert('添加失败!')
}
},
在 add()中传了三个参数,第一个第二个参数必须要传递,第三个参数如果不传会出现问题,现在删掉{emulateJSON:true }
保存后刷新页面,列表没有问题,在输入栏输入‘奔驰’会出现问题。
如果将{emulateJSON:true }再次添加,保存后刷新页面,再次输入‘奔驰’将会显示奔驰的列表。
Vue.http.options.emulateJSON = true;
全局启动emulateJSON 选项
<script>
//全局启动emulateJSON 选项
Vue.http.options.emulateJSON = true ;
此时可以将
{emulateJSON:true }
删掉,启动emulateJSON防止意外情况。
Vue.http.options.emulateJSON = true;全局启动emulateJSON 选项 <script>//全局启动emulateJSON 选项Vue.http.options.emulateJSON = true ;此时可以将{emulateJSON:true }删掉,启动emulateJSON防止意外情况。Vue.http.options.emulateJSON = true;全局启动emulateJSON 选项 <script>//全局启动emulateJSON 选项Vue.http.options.emulateJSON = true ;此时可以将{emulateJSON:true }删掉,启动emulateJSON防止意外情况。