httpUrl.js 356 B

123456789101112131415
  1. function u(str,tel,wx){
  2. wx.request({
  3. url: `http://365wy.top:8897/web/App_Code/Webservice.cs/${str}?tel=${tel}&weixinid=${wx}`,
  4. success:function(ress){
  5. console.log(ress.data);
  6. }
  7. })
  8. }
  9. //导出方法 module.exports
  10. module.exports ={
  11. url:u
  12. }
  13. // //不支持 exports.xxx 只支持 module.exports
  14. // // exports.sayy={}