0
저는 프로그래밍 및 polymer.js 학습을 처음 접했습니다. 현재 사용자에게 서명하기 위해 간단한 웹 응용 프로그램에서 작업하고 있습니다. 현재 양식을 제출할 때마다 아래에 표시된 형식과 완전한 JSON 개체를 제출합니다. 대신 JSON 객체에 양식 값 제출
{
email: "[email protected]",
password: "password"
}
는 ... 여기
{
"email":"[email protected]",
"password":"password"
}
내 코드입니다 :
<form action="http://httpbin.org/post" method="post">
<sign-in-input email="{{_email}}" password="{{_password}}"></sign-in-input>
<input class = "paperbtn" type="submit" value="Sign in">
<input name="email" value="[[_email]]" hidden>
<input name="password" value="[[_password]]" hidden>
</form>
로그인-input.html :
<dom-module id="sign-in-input">
<template>
<paper-input label = "Email" id = "email" required></paper-input>
<paper-input label = "Password" id = "password" required></paper-input>
</template>
<script>
Polymer({
is: 'sign-in-input',
properties: {
email: {
type: String,
notify: true
},
password: {
type: String,
notify: true
}
},
listeners: {
'input': '_onInput'
},
_onInput: function() {
this.email = this.$.email.value.trim();
this.password = this.$.password.value.trim();
}
});
</script>
문제가 표시되지 않습니다. 무엇이 문제인가? – FrankerZ
무엇이 문제인가? – Liam
나는이 문제가'email : "[email protected]"이 "email"이어야한다고 생각한다 : "[email protected]"'분명하지만 확실하지 않다 – Liam