이 글은 주로 WeChat 애플릿 페이지에서 데이터 작업 및 함수 호출에 대한 관련 정보를 소개합니다. 이 글이 필요한 모든 사람에게 도움이 되기를 바랍니다.
WeChat 애플릿 페이지에서 데이터 데이터 획득 및 설정
1. 페이지에서 데이터 데이터 획득 및 설정:
1. 데이터 데이터 설정 this.setData(object)
setData( ) 매개변수 형식: this.data의 키에 해당하는 값을 value로 변경하려면 키와 값의 형태로 객체를 허용합니다. 키는 매우 유연하며 array[2].message, a.b.c.d와 같은 데이터 경로 형태로 제공될 수 있으며 this.data에 미리 정의할 필요가 없습니다.
this.setData({ ; encryptionPage: 'display:block', });
2 데이터 데이터 가져오기 this.data.object
var text=this.data.text
Page({ data: { encryption: "color: green; border-bottom-color: green; border-bottom-size: 1px; border-bottom-style: solid;", decryption: "color: gray; border-bottom-color: #F5F5F5; border-bottom-size: 1px; border-bottom-style: solid;", encryptionPage:'display:block', decryptionPage:'display:none', originalText:'', encryptedText:'', originalTextDecode:'', encryptedTextDecode:'', encryptedPassword:'', decryptedPassword:'', },
setEncryption: function(e){ this.setData({ encryptionPage: 'display:block', decryptionPage: 'display:none', encryption: "color: green; border-bottom-color: green; border-bottom-size: 1px; border-bottom-style: solid;", decryption: "color: gray; border-bottom-color: #F5F5F5; border-bottom-size: 1px; border-bottom-style: solid;", }) }, )}
관련 권장 사항:
위 내용은 WeChat 애플릿 페이지의 데이터 데이터 작업 및 기능 호출에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!