uniapp中这样写:this.$api.jsonHttp.get(`/api/TechnologicalItem/getTechnologicalItem/${this.paramId}?total=` + this .total).then(res => { then.array = res.data.data console.log(then.array) })
时间: 2024-04-06 17:30:56 浏览: 89
uniapp封装websocket,使用简单,下载即可使用,统一使用json收发消息,区分业务类型
5星 · 资源好评率100%
这段代码使用了uniapp自带的$http插件发送了一个GET请求,请求的URL是`/api/TechnologicalItem/getTechnologicalItem/${this.paramId}`,其中`${this.paramId}`是一个变量,会被替换成`this.paramId`变量的值。另外,请求URL后面还带了一个查询参数`total`,值为`this.total`变量的值。当请求成功后,会执行回调函数`then`,将返回的数据的`data`属性赋值给`then.array`变量,然后输出`then.array`的值到控制台。
阅读全文