IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 微信小程序请求本地服务器测试成功 -> 正文阅读

[移动开发]微信小程序请求本地服务器测试成功

在测试阶段,微信小程序是可以请求本地服务器的,这里有如下好处:
1.测试不需要经过网络,暂时可以不配置域名等,服务器也不用上线
2.可以看到小程序和服务器的打印,方便调试和找出问题
3.服务器不用频繁修改上架,更改非常方便

首先要在微信开发者工具做如下配置:

1.勾选上不检测域名:
在这里插入图片描述
2.修改请求网址:
在这里插入图片描述
3.实现请求代码:
在这里插入图片描述

  /**
   * 对话框确认按钮点击事件
   */
  onConfirm: function (res) {
    modal.hideModal(this);
    console.log("set phone:",this.data.hintinfo.inputValue)
    if((this.data.hintinfo.inputValue.length!=11) || isNaN(this.data.hintinfo.inputValue))
    {
      util.showHintModal("手机号格式错误,请重新输入!");
      modal.showDialogBtn(this);
    }
    else
    {
      var that = this;
      wx.request({
        url: util.rootDocment+'/WechatLogin',
        data: {
          request_id:this.data.hintinfo.inputValue,
          request_type: 'wechat'
        },
        header: {
          'content-type': 'application/json' // 默认值
        },
        success (res) {
          console.log("request_filelist OK")
          // console.log(res.data)
          // console.log("request_filelist OK")
          // app.globalData.phone=this.data.hintinfo.inputValue;
          // wx.setStorageSync('phone',  app.globalData.phone)
        },
        fail:function(err){
          console.log(err)
        }
      })
    }
  },

微信小程序的配置和修改到这里就结束了,接下来介绍

后端的修改和配置:

1.为微信请求单独实现类WechatLogin,这里获取微信发过来的请求,如下:
在这里插入图片描述

package com.wechat.response;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import com.util.db;
import com.util.global;

import com.util.StrUtil;
import java.sql.*;

/**
 * Servlet implementation class WechatLogin
 */
@WebServlet("/WechatLogin")
public class WechatLogin extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public WechatLogin() {
        super();
        // TODO Auto-generated constructor stub
    }
	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		String request_type = (String)request.getParameter("request_type");
		String request_id = (String)request.getParameter("request_id");
		global.print("request_type:"+request_type);
		global.print("request_id:"+request_id);

2.在web.xml增加上servlet的配置

  <servlet>
    <description>This is the description of my J2EE component</description>
    <display-name>This is the display name of my J2EE component</display-name>
    <servlet-name>WechatLogin</servlet-name>
    <servlet-class>com.wechat.response.WechatLogin</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>WechatLogin</servlet-name>
    <url-pattern>/servlet/WechatLogin</url-pattern>
  </servlet-mapping>

测试运行:

微信小程序端看到的答应:
在这里插入图片描述
java后台看到的打印:
在这里插入图片描述
测试成功!

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-04-04 12:22:54  更:2022-04-04 12:24:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 20:42:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码