Compiling existing code into web apps

8 ビュー (過去 30 日間)
Julian Schmid
Julian Schmid 2020 年 8 月 20 日
コメント済み: Julian Schmid 2020 年 8 月 25 日
Hi all,
I recently played around with the web app server and run into a problem. I have a GUI from a previous project which uses the uifigure() and its components programatically to create a GUI (basically the same components availible trough the app designer). The app works well with Release 2020a, however compiling the code into a web app seems to be impossible. Do I really have to rebuilt the GUI in App designer (.mlap file) in order to be able to compile it into a web app, or did I miss something important?
Thank you for your time!

採用された回答

Mohammad Sami
Mohammad Sami 2020 年 8 月 21 日
The easiest way would be to create a blank app and then add a startupFcn.
In the startupFcn you can pass in the app.UIFigure to your exisiting code.
You may need to slightly modify your exisiting code.
% Code that executes after component creation
function startupFcn(app, varargin)
yourexistingfunction(app.UIFigure);
end
You can add the startupFcn by clicking the App Input Arguments. You can use varargin as you cant leave it blank.
  1 件のコメント
Julian Schmid
Julian Schmid 2020 年 8 月 25 日
That should work for now, thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Web App Server についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by