我一直在尝试在python代码的github发行版的readme上的所有指令之后在python中设置示例DrEdit。
应用程序设置为: https://speedy-filament-420.appspot.com
当我进行身份验证时,它会闪烁然后没有任何显示。
工作人员应该显示编辑器,类似于以下内容: http://idning-gdrive-test.appspot.com/
除了设置说明以使样本工作之外,我还需要做其他事吗?
有人可以解释一下问题可以解决的问题吗?非常感谢你。
答案 0 :(得分:2)
加载链接并观看Javascript控制台,我在app.js第15行看到错误
13: angular.module('app', ['app.filters', 'app.services', 'app.directives'])
14: .constant('saveInterval', 15000)
15: .constant('appId', [[YOUR APPLICATION ID]]) // Please replace this with your Application ID.
.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when('/edit/:id', {
templateUrl: '/public/partials/editor.html',
controller: EditorCtrl})
.otherwise({redirectTo:'/edit/'});
}]);