Fading Coder

One Final Commit for the Last Sprint

Methods for Passing Parameters in Mini Programs

Data can be shared across pages in a mini program by setting properties on the global App instance. This instance holds a globalData object which acts as a global state container. // app.js App({ globalData: { userProfile: null } }) Other pages can retrieve this app instance using getApp() and then...

WeChat Mini Program Development Essentials

Getting Started Register a Mini Program accounnt and download the stable version of the WeChat DevTools. Obtain the AppID from the development console under "Development" -> "Development Settings". Quick Start Create a new project and launch it using the preview or real-device...