我有点问题。
当我查看我的localhost网站时,我必须写信到地址栏$scope.colors = {
primary_color: "#008fff",
secondary_color:"#008fff",
text_color: "#008fff"
}
$scope.$watch('colors', function (nval, oval) {
console.log(nval);
});
$scope.colorChanged = function() {
$rootScope.$broadcast('color-change', {colors: $scope.colors});
}
。
如果我只写localhost/index.php
,我会得到Apache2默认页面,但我的配置文件设置得很好(我认为)。
httpd.conf(/ opt / lampp / etc)
localhost
那我的问题是什么?在哪里?
我正在使用Debian Stretch(xfce)。