애플릿 폼formId는 the formId is a mock one
formId를 얻으려면form 탭에 속성을 표시해야 합니다
report-submit="true"
.wxml 코드는 다음과 같습니다.<form report-submit="true" bindsubmit="formSubmit" bindreset="formReset">
<label> label>
<input name="name" />
<button formType="submit" type="primary"> button>
form>
1
2
3
4
5
.js 코드는 다음과 같습니다.
formSubmit: function (e) {
// id
formId = e.detail.formId;
// formId the formId is a mock one
console.log(' id:', formId );
}
1
2
3
4
5
6
위챗 개발자 도구에서 실행되는 formId는 the formId is a mock one이며, 실제적이고 효과적인formId를 얻으려면 실제 컴퓨터에서 실행해야 합니다.
텍스트 링크: 애플릿 템플릿 메시지 양식formId는 the formId is a mock one | 리천량의 블로그(첨부: 템플릿 메시지 발송 조건)