- 小程序中能实现字体渐变吗
文字从左到右渐变的效果
2019-01-14 - hello world 编写出现问题怎么办?
版本号1.05.2103190 编写时出现[ app.json 文件内容错误] app.json: app.json 未找到 以及 some messages has been moved into issues panel。按照腾讯公开课创建的,不知道为什么出现了问题。 Some messages have been moved to the Issues panel Some messages have been moved to the Issues panel Some messages have been moved to the Issues panel Some messages have been moved to the Issues panel Some messages have been moved to the Issues panel Some messages have been moved to the Issues panel Some messages have been moved to the Issues panel
2021-04-13 - Some messages have been moved to the Issues ?
新建的小程序项目,总是有这个信息提示,点开查看详细,出现如下信息,不知道该怎么去掉这个警告 Content Security Policy of your site blocks the use of 'eval' in JavaScript Content Security Policy of your site blocks the use of 'eval' in JavaScript
2021-04-16 - ui-app开发时,image异步设置src值报错[渲染层网络层错误] Failed to load
[图片] [图片] 备注:1、图片在浏览器是可以正常打开的 2、当重新刷新整个小程序时,头像图片也是可以显示的 3、第一张图是二级页面,头像点击进入的
2021-08-26 - 小程序调用云存储图片:[渲染层网络层错误] Failed to load image 请问怎么处理?
[图片] [图片]
2021-05-05 - [渲染层网络层错误] 怎么解决啊?
[图片] 这是放图片的标签。 [图片] 下面是请求的数据。只有headimg没有,其他的都可以。 [图片]
2021-01-11 - Setting data field "" to undefined is inva?(问题已解决)
请问大神们,我两个页面之间传参,最后确实参数传过去了,但是setdata里面的值却没有改变,而且还会给出Setting data field "endPoint" to undefined is invalid.这个提示 A页面的点击函数传参: [图片] B页面的onload监听事件获取参数 [图片] B页面控制台输出: [图片] 从A页面传到B页面参数时,在B页面页面监听事件,打印的时候确实传过来了,但是没有传到setdata里面改变B页面的视图层数据,请问各位大神这是为什么(A和B的wxml中的变量都是正确的,因此我没有放截图,毕业设计想做一款校园出行小程序,属于小白一枚。)
2019-12-15 - Setting data field "XX" to undefine
- 需求的场景描述(希望解决的问题) [图片] [图片] [图片] - 希望提供的能力 postdata能够在前端显示 [图片] [图片]
2019-03-12 - setting data field "xxx" to undefined
正常获得request返回值了(后台log可以看得到),在setData时,开发者工具上是正常的,返回结果显示到页面上,但上传后在手机端打开,报“setting data field "xxx" to undefined is invalid"的错。开发者工具里是没报错的,不知道是什么情况引起的。 返回值如下:{"dataList":[{"id":"1","user_id":"12345678901","user_name":"张先生","booking_course":"电子积木","booking_status":"申请成功","booking_answer_time":"","booking_teacher":"客服","booking_teacher_phone":"12345678"}]} 开发者工具正常显示数据(下面一行): [图片] 手机端的报错(打开调试): [图片] [图片] 源码是: Page( { data: { courseList:{}, ...... success: function (res) { that.setData({ courseList: res.data.data }); } 不知道是什么原因引起的,在开发者工具里正常setdata,在手机上却报错? 哪位先行者帮忙解答下,万分感谢
2018-04-26 - 如何解决_this.setData与this.setData都无法赋值?
onLoad: function (options) { const db = wx.cloud.database({ env: 'ka-tset-pz57d' }) db.collection('readergoods').get({ success: res=> { console.log(res.data) , console.log(res.data[0].goods_name) this.setData({ goodslists: res.data, name:res.data[0].goods_name, price:res.data[0].goods_price }) } }) }, 第二种方法 onLoad: function (options) { var _this = this; const db = wx.cloud.database({ env: 'ka-tset-pz57d' }) db.collection('readergoods').get({ success: function(res) { console.log(res.data) , console.log(res.data[0].goods_name) _this.setData({ goodslists: res.data, name:res.data[0].goods_name, price:res.data[0].goods_price }) } }) }, 这两个都没有赋值成功 [图片]但是都可以console.log在控制台输出出来
2020-05-21