我想在我的战斗系统中制造暴击但是我很难过有人可以帮忙吗?我看了别人的,但是对我的代码不起作用,你能帮忙吗?我的朋友想要一个可靠有效的战斗系统。我这样做是为了帮助他们,但是gosh darn crits让我感到困惑。我想要解释如何解决它。非常感谢您的帮助! :d
myApp.controller('checkUserGroup', [function () {
angular.element(document).ready(function () {
$().SPServices({
operation: "GetGroupCollectionFromUser",
userLoginName: $().SPServices.SPGetCurrentUser(),
async: false,
completefunc: function (xData, Status) {
if ($(xData.responseXML).find("Group[Name='Approvers']").length == 1) {
document.getElementById('isuseringroup').value = "1";
alert("login inside of the Group user");
}
else {
document.getElementById('isuseringroup').value = "0";
alert("login outside of the Group user");
}
}
});
});