数据存储实体未显示

时间:2014-11-26 18:11:14

标签: android google-app-engine google-cloud-datastore google-cloud-endpoints

  

https://cloud.google.com/developers/articles/how-to-build-mobile-app-with-app-engine-backend-tutorial/

这个网页几乎已经在标题"测试客户端和后端通信",在第8步:当我访问localhost时:8888 / _ah / admin /

我没有在下拉列表中看到任何实体(这是我对本教程的第三次尝试。首先两次尝试我只会看到一个实体' MessageData'三分之一。)我应该看到三个实体特别是签入。

我很难过。另外,我正处于学习阶段。我必须做什么才能在数据存储区中创建实体?

提前谢谢。

1 个答案:

答案 0 :(得分:2)

以下是MainActivity的代码: https://github.com/GoogleCloudPlatform/solutions-mobile-shopping-assistant-backend-java/blob/master/MobileAssistant-Tutorial/Phase1_Snippets/MainActivity.01.java

您首先要生成Cloud EndPoint库。 然后,您必须检查AndroidManifest.xml上是否有这个lign:

 <uses-permission android:name="android.permission.INTERNET"/>

启动Android应用程序时运行的第一个classe在此处定义:

 <application           
        android:allowBackup="true" 
        android:icon="@drawable/ic_launcher" 
        android:label="@string/app_name" 
        android:theme="@style/AppTheme">

         <!-- Notre activité SplashScreen -->
         <activity android:label="@string/app_name" android:name="com.example.test.MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN"/>
                    <category android:name="android.intent.category.LAUNCHER"/>
                </intent-filter>
         </activity>
</application>

希望能帮到你!