Google App Maker app not working after deploy

2019-02-20 20:36发布

I have built an app with Google App Maker which has a Suggest Box linked to a table by a Query parameter.

The app works correctly in Preview mode, but when I deploy it, the Suggest Box doesn't suggest anything!

I have deployed it once before (without a select box as I recall) and it worked correctly.

I tried redeploying to the original deployment and deploying to a new deployment, same result.

Am I missing some security setting or something?

标签: appmaker
2条回答
手持菜刀,她持情操
2楼-- · 2019-02-20 21:06

Use the browser console to see if there's an error on the connection, make sure the user has access to the datasource and if you're using cloud SQL check the parameters of cloudSQL in the publication

查看更多
倾城 Initia
3楼-- · 2019-02-20 21:16

I am using Drive Tables as my datasource. The kind people at Google sent me a couple of links which helped me to understand what's going on: previewing and publishing your application and running as user or developer.

The crux of the issue is that when you deploy an app and run it as user (default), it doesn't take any Drive Table data with it. If you want to add Drive Table data to the deployed app, you have to do this:

  1. Open App Maker
  2. Go to App Settings
  3. Go to Deployments
  4. Select your most recent deployment and click: “EXPORT DATA”
  5. Make sure you select Preview from the Deployments drop down list.
  6. Click Export
  7. This will export all your Preview data to a new Google Spreadsheet.
  8. Now go to your Drive models in the App Maker and click “IMPORT DATA FROM SHEET”
  9. Here you can choose to import data to your Deployed version.
  10. After completing the import process, you will have all your data in the Deployed app.

All courtesy of Google but I didn't find it in the docs, so it might help someone.

查看更多
登录 后发表回答