第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Flask 和 jQuery '$' 未定義

Flask 和 jQuery '$' 未定義

呼如林 2023-08-18 10:32:15
我是編程新手,在解釋當(dāng)我嘗試創(chuàng)建登錄頁(yè)面時(shí)不斷出現(xiàn)的控制臺(tái)錯(cuò)誤時(shí)遇到困難。我有基本的登錄頁(yè)面,其中包含電子郵件和密碼輸入,以及顯示登錄頁(yè)面和顯示輸入的燒瓶路線(xiàn)。我已經(jīng)按照在線(xiàn)教程來(lái)完成這項(xiàng)工作,但是當(dāng)我查看控制臺(tái)時(shí),我收到以下錯(cuò)誤:test.js:1 Uncaught ReferenceError: $ is not defined at test.js:1根據(jù)教程,這應(yīng)該可以工作。我的登錄和登錄提交路線(xiàn)如下所示@app.route("/login")def show_login():    return render_template("login.html")      @app.route('/login_submit', methods=['POST'])def login_submit():    """Log a user into the website"""    email = request.form.get('email')    password = request.form.get('password')    user = check_user_login_info(email, password)    print(user)        if (len(user) > 0):        name = user[0].first_name + ' ' + user[0].last_name        session['user_id'] = user[0].user_id        session['cart'] = {}        return jsonify({'login': name})        return jsonify({'invalid': 'Incorrect email or password'}) javascript 看起來(lái)像這樣$(document).ready(function() {    $('form').on('submit', function(event) {        $.ajax({            data : {                name : $('#nameInput').val(),                email : $('#emailInput').val()            },            type : 'POST',            url : '/login_submit'        })        .done(function(data) {            if (data.error) {                $('#errorAlert').text(data.login).show();                $('#successAlert').hide();            }            else {                $('#successAlert').text(data.invalid).show();                $('#errorAlert').hide();            }        });        event.preventDefault();    });});在我的 HTML 中,如果我添加到表單中,action='/login_submit' method='POST'我會(huì)得到 jsonify 的輸出,顯示登錄成功或無(wú)效 html 非?;?,看起來(lái)像這樣<script src="/static/test.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>  <h2>Log Into Your Account</h2>  <form >    <p>      Email <input type="text" id='emailInput' name="email">    </p>
查看完整描述

1 回答

?
慕村225694

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊

這可能是由于 Jquery 導(dǎo)入放置在 HTML 文件中所致。test.js您在導(dǎo)致此類(lèi)錯(cuò)誤的文件之后導(dǎo)入 jQuery 。在頂部導(dǎo)入 jQuery 并重試。


<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>

<script src="/static/test.js"></script> 


  <h2>Log Into Your Account</h2>

  <form >

    <p>

      Email <input type="text" id='emailInput' name="email">

    </p>


    <p>

      Password <input type="password" id='passwordInput' name="password">

    </p>


    <p>

      <button type="submit">Submit</button>

    </p>

  </form>

    <div id="successAlert" role="alert" style="display:none;"></div>

    <div id="errorAlert" role="alert" style="display:none;"></div>


查看完整回答
反對(duì) 回復(fù) 2023-08-18
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)