gpt4 book ai didi

javascript - vue-material 表单 POST 集

转载 作者:行者123 更新时间:2023-11-30 21:16:49 24 4
gpt4 key购买 nike

我想用 vue-material 创建一个登录页面.我有来自 here 的表单库.我在服务器端使用 laravel 5.4。

我的模板:

<div id="app">
<md-layout md-tag="form" novalidate @submit.stop.prevent="submit" md-align="center">
<md-layout md-tag="md-card" md-column md-flex="30" md-flex-medium="40" md-flex-small="60" md-flex-xsmall="90" class="md-primary">
<md-card-header>
<div class="md-title">Login</div>
</md-card-header>

<md-card-content>
<md-input-container>
<md-icon>person</md-icon>
<label>Email</label>
<md-input email required v-model="email" />
</md-input-container>

<md-input-container md-has-password>
<md-icon>lock</md-icon>
<label>Password</label>
<md-input type="password" required v-model="password" />
</md-input-container>
</md-card-content>

<md-card-actions>
<md-button type="submit">Login</md-button>
</md-card-actions>
</md-layout>
</md-layout>
</div>

我的问题:

  1. 如何设置表单使用POST而不是GET?

  2. 如何设置应发送输入字段值?

最佳答案

要将请求从 GET 更改为 POST,请将 method 属性添加到呈现为表单的 md-layout 标记:

<md-layout 
md-tag="form"
method="POST"
novalidate
@submit.stop.prevent="submit"
md-align="center"
>

然后,要在 POST 中发送输入字段的值,请将 name 属性添加到输入:

<md-input email required v-model="email" name="email" />

还有,

<md-input type="password" required v-model="password" name="password" />

Here's a working codepen.

关于javascript - vue-material 表单 POST 集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45598230/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com