-1
函數GameController($ scope)不起作用,我不知道爲什麼,有人可以幫忙嗎?無法使用函數int控制器
(function() {
angular.module('MemoryGame').controller('GameController', GameController);
GameController.$inject = ['$scope'];
console.log("hhhhhhh");
function GameController($scope) {
console.log("gggggg");
var cards = document.querySelectorAll(".all-cards");
var i = 0;
var textArray = []; // array that saving the text of the car
var count = 0; // count the card flipped
var save_cards = [];
cards.forEach((card) => {
card.addEventListener('click', function() {
});
});
}
})();
你可以請分享你得到的錯誤。這將有助於確定問題。 –
發佈相關的HTML也很有用。 –