我的angularjs应用程序在我的机器上的localhost上运行得很好。但是当我将它部署到heroku时,应用程序正在显示但是一些功能,主要是后端通信的前端失败。我怀疑这是因为我使用了http://localhost:3000
而不是我的真实网站addess:https://mytestapp.herokuapp.com
。有人可以让我知道我应该怎么做才能在heroku上运行这个应用程序?后端与前端通信以使登录/注册功能运行。目前,当我登录或注册时,我收到错误,好像什么都没发生一样。
我运行了grunt build
,并从/dist
移除了.gitignore
,并拥有 procfile ,就像这个web: node api.js
一样。
和我的package.json文件类似:
"version": "1.0.0",
"main": "Gruntfile.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "nf start",
"test": "echo \"Error: no test specified\" && exit 1"
},
我还在app.config.js中声明了一个常量,如:
.constant('API_URL', 'http://localhost:3000/')
我使用API_URL
设置我的登录/注册authproviders。
在我的gruntfile.js中,我也有以下内容:
connect: {
options: {
port: 9000,
// Change this to '0.0.0.0' to access the server from outside.
hostname: 'localhost',
livereload: 35729
},
livereload: {
options: {
open: true,
middleware: function (connect) {
return [
connect.static('.tmp'),
connect().use(
'/bower_components',
connect.static('./bower_components')
),
connect().use(
'/app/styles',
connect.static('./app/styles')
),
connect.static(appConfig.app)
];
}
}
},
test: {
options: {
port: 9001,
middleware: function (connect) {
return [
connect.static('.tmp'),
connect.static('test'),
connect().use(
'/bower_components',
connect.static('./bower_components')
),
connect.static(appConfig.app)
];
}
}
},
我正在尝试在此控制器中实现它,但没有成功:
当我实施Yoni的解决方案时,我不再获得projectlist
,它显示一个空页面。那是为什么?
'use strict';
angular.module('ModuleV11App')
.controller('ProjectlistCtrl', function ($http, $scope, API_URL, alert) {
return $http.get($rootScope.server.url + '/projectlist').success(function (projectlist) {
$scope.projectlist = projectlist;
}).error(function (err) {
alert('warning', "Unable to get projects, please login first", err.message);
})
});
然而,它是有效的,当它是这样的时候:
return $http.get(API_URL + 'projectlist').success(function (projectlist) {
答案 0 :(得分:1)
您可以这样做:
angular.module('mainModule', [])
.run(function($location,$rootScope) {
$rootScope.server = {url: location.protocol + '//' + location.hostname + (location.port ? ':' + location.port : '')};
})
然后你可以在你的前端代码中的任何地方进行这样的调用:
$http.get($rootScope.server.url + '/whatever');