xshan1122 发表于 2022-2-27 02:15

用源码搭建微信小程序,登录页面505,大佬看看

<div class="wrap" >
    <div class="container">
      <div class="row">
            <div class="col-md-4 col-md-offset-4">
                <h1 class="text-center" style="font-weight: bold;color: #fff;text-shadow: 0 0 10px #fff;">Tao表情包后台</h1>
                <form class="js-ajax-form" action="{:url('public/doLogin')}" method="post">
                  <div class="form-group">
                        <input type="text" id="input_username" class="form-control" name="username"
                               placeholder="{:lang('USERNAME_OR_EMAIL')}" title="{:lang('USERNAME_OR_EMAIL')}"
                               value="{:cookie('admin_username')}" data-rule-required="true" data-msg-required="">
                  </div>

                  <div class="form-group">
                        <input type="password" id="input_password" class="form-control" name="password"
                               placeholder="{:lang('PASSWORD')}" title="{:lang('PASSWORD')}" data-rule-required="true"
                               data-msg-required="">
                  </div>

                  <div class="form-group">
                        <div style="position: relative;">
                            <input type="text" name="captcha" placeholder="验证码" class="form-control captcha">
                            <captcha height="32" width="150" font-size="18"
                                     style="cursor: pointer;position:absolute;right:1px;top:1px;"/></captcha>
                        </div>
                  </div>

                  <div class="form-group">
                        <input type="hidden" name="redirect" value="">
                        <button class="btn btn-primary btn-block js-ajax-submit" type="submit" style="margin-left: 0px"
                              data-loadingmsg="{:lang('LOADING')}">
                            {:lang('LOGIN')}
                        </button>
                  </div>

                </form>

不知道如何处理,我可以分享源码的

淡水千痕 发表于 2022-2-27 11:19

检查后台接口
action="{:url('public/doLogin')}"
method="post

BestSum 发表于 2022-2-27 11:42

说了接口500的,去网络找到接口查看响应分析原因

wangshisan 发表于 2022-2-27 13:19

这个表情包源码到处是的,不用这么麻烦,换一套就可以了。

iYoloPPD 发表于 2022-2-27 13:26

我帮你看看

chinadd 发表于 2022-2-27 14:39

<form class="js-ajax-form" action="{:url('public/doLogin')}" method="post">

核对一下你后台这个路径的method方法,参数要求等。
页: [1]
查看完整版本: 用源码搭建微信小程序,登录页面505,大佬看看