微信小程序 无法请求到公司后台URL接口
clickMe :function(){
wx.request({
url: ‘http://www.公司域名.com/项目名/模块名/login.do’, //仅为示例,并非真实的接口地
dataType: ‘json’,
// data: { “A”: “A”, “B”: “B”, “C”: “C” },
header: {
‘content-type’: ‘application/json’, // 默认值
},
success: function (res) {
console.log(res)
}
});