我使用<?php
/**
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* This file is licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License. A copy of
* the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
require 'vendor/autoload.php';
use Aws\S3\S3Client;
use Aws\Exception\AwsException;
/**
* Get/Download an Object from Amazon S3.
*
* This code expects that you have AWS credentials set up per:
* http://docs.aws.amazon.com/aws-sdk-php/v3/guide/guide/credentials.html
*/
$bucket = "my-bucket-logs";
$key = "xxxxxxxxxx";
$filePath = "my-log-files.json";
try {
$result = $s3Client->getObject(array(
'Bucket' => $bucket
,'Key' => $key
,'SaveAs' => $filePath
));
} catch (S3Exception $e) {
echo $e->getMessage() . "\n";
}
作为依赖关系并在 routes.js 上使用$locationProvider
并在 index.html <上使用$locationProvider.html5Mode(true);
/ strong>页面,但结果是错误:$ injector:modulerr 之类的错误
模块错误以及一些奇怪的内容,所以我搜索了它并删除了<base href='/">
并将<base href='/">
修改为$locationProvider.html5Mode(true);
,现在我不会面对任何错误,但没有任何东西像没有任何观点或控制器或任何加载,我使用了很多其他的cdn。 AnyOne请帮帮我...
被修改
如果我需要在 plunker 上分享我的代码,我必须编辑所有文件以指向正确的位置来访问它们,因为这个应用程序处理指令,服务和其他东西,所以给出下面的一些代码这让我对你的问题有了一些看法
此处的github存储库链接:https://github.com/avinashdv/GameOfThrones
请使用以下代码修改 routes.js 上的$ locationProvider,使用$locationProvider.html5Mode({enabled: true, requireBase: false});
编辑index.html以查看错误
在 index.js 上同时尝试 routes.js 上的<base href='/">
而$locationProvider.html5Mode(true);
也没有结果......
routes.js
<base href='/">
index.js
$locationProvider.html5Mode(true);
$routeProvider
.when('/', {
templateUrl : 'pages/main-view.html',
controller : 'firstController',
controllerAs : 'firstCtrl'
})