How to pass an object to a FatFractal server extension, access from within the extension, and return an object back to client application?
问题 I am using the FatFractal JavaScript SDK and have declared a server extension in my FFDL file as follows: CREATE EXTENSION /ChangePassword AS javascript:require('scripts/UserAdministration').changePassword(); I am creating a server extension to allow a user to change their login password. From my client application, I want to pass a simple object to /ChangePassword containing the logged in user's username, current (old) password, and new desired password. Assuming I have populated said object