尝试了我所知道的一切,但仍然得到了意想不到的结果"

时间:2016-10-20 20:41:00

标签: angularjs

我正在学习使用PHP和mySQL构建CRUD应用程序的教程。当我将下面的代码输入我的angular-script.js文件时,最后一行(大括号)被标记为包含错误。 (我使用Dreamweaver CS6作为我的代码编辑器)。当我在浏览器中运行该文件时,控制台会抛出一个错误,指出"意外的输入结束"并引用包含我上面提到的大括号的线。有人可以告诉我下面的代码出错吗?我试过关闭我认为需要关闭,计算括号,括号和括号的内容,但似乎没有任何效果。谢谢。

Dim c as Range, i as Long
i = 1
For Each c In activesheet.Range("R5:R34")
    activesheet.shapes("CommandButton" & i).visible = (c.Value = "Y")
    i = i + 1
Next c

2 个答案:

答案 0 :(得分:1)

你错过了}])在文件的末尾

答案 1 :(得分:0)

通过良好的缩进,这将更容易。试试这个:

// Application module
var crudApp = angular.module('crudApp',[]);

crudApp.controller("DbController",['$scope','$http', function($scope,$http){

  function getInfo(){

    // Sending request to EmpDetails.php files
    $http.post('databaseFiles/empDetails.php').success(function(data){
      // Stored the returned data into scope
      $scope.details = data;
    });
  }

  // Function to get employee details from the database
  getInfo();
}]);