这段代码抛出了上述错误:
(function(angular) {
'use strict';
angular.module('switchExample', ['ngAnimate'])
.controller('ExampleController', ['$scope', function($scope) {
$scope.getDisplayText = function() {
$scope.myCondition = getValue($scope.searchTerm);
};
$scope.myCondition = getValue('Home');
function getValue(input) {
var cond = input;
if (input === 'Test') {
cond = 'show test';
}
return cond;
};
}]);
})(window.angular);
我已经按照其他文章的建议导入了SwiftyJSON,但是仍然存在相同的错误。
class func fromJSON(json: [JSONValue]) -> Artwork? {
知道出了什么问题吗?