- 各位大佬如何把console.log的输出结果保存到数据库?
Page({ data: { }, onLoad: function (options) { }, sendEmailto4s1(e){ wx.redirectTo({ url: '/pages/s/s', }) var action = e.currentTarget.dataset.action; console.log(action); //father const db = wx.cloud.database() } }) <button class="btn1" data-action="father" catchtap="sendEmailto4s1" >爱车遇到功能故障</button> console.log会输出[图片]
2021-07-23 - 如何获得输入框数字传到云函数里?
各位大神 我还是在做那个小程序发送邮件的学生 我感觉就差一点了希望得到大佬们的帮助! 我修改了修改云函数 想从从index.js里获得值,贴一下代码! 发送邮件的云函数:(我就是想实时改变邮件的内容,即用户输入一下数据我这就能接受并发到邮箱里) [图片] [图片] [图片] const cloud = require('wx-server-sdk') cloud.init({ traceUser: true, env: 'wx1c875541493fc5fd' }) var db = cloud.database() //引入发送邮件的类库 var nodemailer = require('nodemailer') // 创建一个SMTP客户端配置 var config = { host: 'smtp.qq.com', //网易163邮箱 smtp.163.com port: 465, //网易邮箱端口 25 auth: { user: '838618033@qq.com', //邮箱账号 } }; // 创建一个SMTP客户端对象 var transporter = nodemailer.createTransport(config); // 云函数入口函数 exports.main = async(event, context) => { const db = cloud.database() //链接数据库 // 创建一个邮件对象 var mail = { // 发件人 from: '来自小程序管理员 <838618033@qq.com>', // 主题 subject: '有一位车主拨打了维修店电话', // 收件人 to: '838618033@qq.com', // text:'姓名为曹博信的车主拨打了维修厂的电话' // 邮件内容,text或者html格式 text:event.text }; let res = await transporter.sendMail(mail); return res; } index.js(就是sendEmail函数里!data:{里面的TEXT,到底应该怎么养活的我输入的数字啊wuwu,我贴一下界面) 我这个它显示Undenfinded,不行 }, fail(res){ console.log("发送失败",res) } }) }, url: 'index', }) wx.showToast({ title: '号码应为11位!', icon: 'loading', duration: 5000, }) }else{ wx.redirectTo({ url: '/pages/4s/4s', }) wx.showLoading({ title: '数据正在提交中......', mask:"true" }) const db = wx.cloud.database() db.collection('test').add({ data: data, success: res => { // 在返回结果中会包含新创建的记录的 _id this.setData({ counterId: res._id }) wx.showToast({ title: '新增记录成功', }) wx.hideLoading() console.log('[数据库] [新增记录] 成功,记录 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增记录失败' }) console.error('[数据库] [新增记录] 失败:', err) } }) } }, // bindDateChange: function (e) { // console.log('picker发送选择改变,携带值为', e.detail.value) // this.setData({ // date: e.detail.value // }) // }, wxccall:function(e){ // wx.redirectTo({ // url: '/pages/wxc/wxc', // }) console.log('form发生了submit事件,携带数据为:', e.detail.value) var data=e.detail.value if (e.detail.value.userName.length <11) { wx.navigateTo({ url: 'index', }) wx.showToast({ title: '号码应为11位!', icon: 'loading', duration: 5000, }) }else{ wx.redirectTo({ url: '/pages/wxc/wxc', }) wx.showLoading({ title: '数据正在提交中......', mask:"true" }) const db = wx.cloud.database() db.collection('test').add({ data: data, success: res => { // 在返回结果中会包含新创建的记录的 _id this.setData({ counterId: res._id }) wx.showToast({ title: '新增记录成功', }) wx.hideLoading() console.log('[数据库] [新增记录] 成功,记录 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增记录失败' }) console.error('[数据库] [新增记录] 失败:', err) } }) } wx.showLoading({ title: '数据正在提交中......', mask:"true" }) const db = wx.cloud.database() db.collection('test').add({ data: data, success: res => { // 在返回结果中会包含新创建的记录的 _id this.setData({ counterId: res._id }) wx.showToast({ title: '请您拨打电话', }) wx.hideLoading() console.log('[数据库] [新增记录] 成功,记录 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增记录失败' }) console.error('[数据库] [新增记录] 失败:', err) } }) }, }) [图片] html 联系方式: 您的爱车坏了,您打算去哪里修车呢? 4S店(推荐) 维修厂 获得4S店电话 获得维修厂电话 跪求大佬指点,如何把我输入的值传到sendEmail里的data:{text中!
2021-07-16 - 为什么使用云函数发送邮件报错?Error: cloud.callFunction:fail -404
报错信息: 发送失败 Error: cloud.callFunction:fail -404011 cloud function execution error. 云函数执行错误 云端堆栈信息(error stack)(callid 1626345888216-0.5747384957329358): Error: collection.get:fail -501001 resource system error. Environment not found at Object.toSDKError (:27751/var/user/node_modules/wx-server-sdk/index.js:8089) at Object.checkError (:27751/var/user/node_modules/wx-server-sdk/index.js:1422) at Promise (:27751/var/user/node_modules/wx-server-sdk/index.js:1489) at process._tickCallback (:27751/appservice/internal/process/next_tick.js:68)我晕了 今天上午十点还可以发送 下载再用就不行了 神仙救救我吧! 云函数 const cloud = require('wx-server-sdk') cloud.init({ env:cloud.DYNAMIC_CURRENT_ENV }) //引入发送邮件的类库 var nodemailer = require('nodemailer') // 创建一个SMTP客户端配置 var config = { host: 'smtp.qq.com', //网易163邮箱 smtp.163.com port: 465, //网易邮箱端口 25 auth: { user: '838618033@qq.com', //邮箱账号 pass: 'befoglzjsndqbbgg' //邮箱的授权码 } }; // 创建一个SMTP客户端对象 var transporter = nodemailer.createTransport(config); // 云函数入口函数 exports.main = async(event, context) => { // 创建一个邮件对象 var mail = { // 发件人 from: '来自小程序管理员 <838618033@qq.com>', // 主题 subject: '有一位车主拨打了维修店电话', // 收件人 to: '838618033@qq.com', // text:'姓名为曹博信的车主拨打了维修厂的电话' // 邮件内容,text或者html格式 text:'姓名为'+(await cloud.database().collection('test').get()).data[0].licenceNo+'的车主拨打了维修厂的电话' }; let res = await transporter.sendMail(mail); return res; } js Page({ data: { }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, sendEmail(){ wx.cloud.callFunction({ name:"sendEmail", success(res){ console.log("发送成功",res) }, fail(res){ console.log("发送失败",res) } }) }, formSubmit: function (e) { wx.redirectTo({ url: '/pages/4s/4s', }) console.log('form发生了submit事件,携带数据为:', e.detail.value) var data=e.detail.value { wx.showLoading({ title: '数据正在提交中......', mask:"true" }) const db = wx.cloud.database() db.collection('test').add({ data: data, success: res => { // 在返回结果中会包含新创建的记录的 _id this.setData({ counterId: res._id }) wx.showToast({ title: '请您拨打电话', }) wx.hideLoading() console.log('[数据库] [新增记录] 成功,记录 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增记录失败' }) console.error('[数据库] [新增记录] 失败:', err) } }) } }, })
2021-07-15 - 如何用云函数获得表单数据?
如何解决获取表单数据时返回的object Promise? 我用微信小程序云函数制作了一个发邮件的功能 主函数是填写 名字 提交表单到云数据库 我现在是想发送邮件的内容是 姓名为+“名字”+的车主拨打了维修厂的电话 可是一直返回 姓名为[object Promise]的车主拨打了维修厂的电话 我把代码贴一下 希望大佬分析!狠狠的感恩您! 我的Q838618033 (云数据库都配好了 每次也都更新依赖) 云函数: const cloud = require('wx-server-sdk') cloud.init() //引入发送邮件的类库 var nodemailer = require('nodemailer') // 创建一个SMTP客户端配置 var config = { host: 'smtp.qq.com', //网易163邮箱 smtp.163.com port: 465, //网易邮箱端口 25 auth: { user: '838618033@qq.com', //邮箱账号 } }; // 创建一个SMTP客户端对象 var transporter = nodemailer.createTransport(config); // 云函数入口函数 exports.main = async(event, context) => { // 创建一个邮件对象 var mail = { // 发件人 from: '来自小程序管理员 <838618033@qq.com>', // 主题 subject: '有一位车主拨打了维修店电话', // 收件人 to: '838618033@qq.com', // text:'姓名为曹博信的车主拨打了维修厂的电话' // 邮件内容,text或者html格式 text:'姓名为'+cloud.database().collection('userName').get()+'的车主拨打了维修厂的电话' }; let res = await transporter.sendMail(mail); return res; } [图片] 主函数: Page({ /** * 页面的初始数据 */ data: { }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, sendEmail(){ wx.cloud.callFunction({ name:"sendEmail", success(res){ console.log("发送成功",res) }, fail(res){ console.log("发送失败",res) } }) }, // pnum(){ // wx.cloud.callFunction({ // name:"getData" // }) // .then(res =>{ // console.log('666666666666666666',res) // this.setData({ // userName:res.result.userName // }) // }) // .catch(res =>{ // console('444444444444444',res) // }) // }, formSubmit: function (e) { wx.redirectTo({ url: '/pages/4s/4s', }) console.log('form发生了submit事件,携带数据为:', e.detail.value) var data=e.detail.value { wx.showLoading({ title: '数据正在提交中......', mask:"true" }) const db = wx.cloud.database() db.collection('test').add({ data: data, success: res => { // 在返回结果中会包含新创建的记录的 _id this.setData({ counterId: res._id }) wx.showToast({ title: '请您拨打电话', }) wx.hideLoading() console.log('[数据库] [新增记录] 成功,记录 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增记录失败' }) console.error('[数据库] [新增记录] 失败:', err) } }) } }, wxccall:function(e){ wx.redirectTo({ url: '/pages/wxc/wxc', }) console.log('form发生了submit事件,携带数据为:', e.detail.value) var data=e.detail.value { wx.showLoading({ title: '数据正在提交中......', mask:"true" }) const db = wx.cloud.database() db.collection('test').add({ data: data, success: res => { // 在返回结果中会包含新创建的记录的 _id this.setData({ counterId: res._id }) wx.showToast({ title: '请您拨打电话', }) wx.hideLoading() console.log('[数据库] [新增记录] 成功,记录 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增记录失败' }) console.error('[数据库] [新增记录] 失败:', err) } }) } }, bindDateChange: function (e) { console.log('picker发送选择改变,携带值为', e.detail.value) this.setData({ date: e.detail.value }) }, bindRegionChange: function (e) { console.log('picker发送选择改变,携带值为', e.detail.value) this.setData({ region: e.detail.value }) }, }) [图片] 姓名 您的爱车坏了,您打算去_修车 4S店(推荐)电话 维修厂电话 获得4S店电话 获得维修厂电话 [图片] 菜鸟上路三天 还是希望各位大佬各抒己见 多谢指教
2021-07-15