• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript entcore.angular类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中entcore.angular的典型用法代码示例。如果您正苦于以下问题:TypeScript angular类的具体用法?TypeScript angular怎么用?TypeScript angular使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了angular类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: function

 scope.dropToRight = function ($item, targetItem, index, right, left) {
     scope.setHover(index, right, left);
     if(targetItem.text_right){
         scope.grainCopy.grain_copy_data.custom_copy_data.all_possible_answer.push({
             item : angular.copy(targetItem.text_right),
             rank : 0.5 - Math.random()
         });
     }
     targetItem.text_right = angular.copy($item.item);
     scope.$apply();
     scope.all_possible_answer_pop(targetItem.text_right);
     scope.updateGrainCopy();
 };
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:13,代码来源:performAssociation.ts


示例2: function

 angular.forEach(grainCopy.grain_copy_data.custom_copy_data.filled_answer_list, function(filled_answer, key){
     answerCorrect = false;
    angular.forEach(grainScheduled_correct_answer_list, function(correct_answer){
        if(!correct_answer.alreadyMatch){
            if(CompareStringHelper.compare
                (
                    correct_answer.text,
                    filled_answer.text
                ) === true){
                answerCorrect = true;
                correct_answer.alreadyMatch = true;
            }
        }
    });
     if(answerCorrect){
         isCorrectReturnArray[key] = true;
         if(grainScheduled.grain_data.custom_data.no_error_allowed && atLeastOneError){
             // do not incremented
         } else{
             numberGoodAnswer++
         }
     } else {
         isCorrectReturnArray[key] = false;
         atLeastOneError = true;
         if(grainScheduled.grain_data.custom_data.no_error_allowed){
             numberGoodAnswer = 0;
         }
     }
 });
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:29,代码来源:MultipleAnswerService.ts


示例3: automaticCorrection

    public automaticCorrection(grainScheduled:IGrainScheduled, grainCopy:IGrainCopy):{calculated_score:number, answers_result:{}} {
        var numberGoodAnswer : number = 0,
            atLeastOneError =  false,
            answerCorrect,
            isCorrectReturnArray = {},
            grainScheduled_correct_answer_list = angular.copy(grainScheduled.grain_data.custom_data.correct_answer_list);
        angular.forEach(grainCopy.grain_copy_data.custom_copy_data.filled_answer_list, function(filled_answer, key){
            answerCorrect = false;
           angular.forEach(grainScheduled_correct_answer_list, function(correct_answer){
               if(!correct_answer.alreadyMatch){
                   if(CompareStringHelper.compare
                       (
                           correct_answer.text,
                           filled_answer.text
                       ) === true){
                       answerCorrect = true;
                       correct_answer.alreadyMatch = true;
                   }
               }
           });
            if(answerCorrect){
                isCorrectReturnArray[key] = true;
                if(grainScheduled.grain_data.custom_data.no_error_allowed && atLeastOneError){
                    // do not incremented
                } else{
                    numberGoodAnswer++
                }
            } else {
                isCorrectReturnArray[key] = false;
                atLeastOneError = true;
                if(grainScheduled.grain_data.custom_data.no_error_allowed){
                    numberGoodAnswer = 0;
                }
            }
        });
        // computation score
        var numberPossibleAnswer : number = grainScheduled.grain_data.custom_data.correct_answer_list.length;
        var calculated_score = (numberGoodAnswer / numberPossibleAnswer) * grainScheduled.grain_data.max_score;
        if(isNaN(calculated_score)){
            throw "calculated score is not a number"
        }
        return {
            calculated_score: calculated_score,
            answers_result: isCorrectReturnArray

        };
    }
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:47,代码来源:MultipleAnswerService.ts


示例4: function

        angular.forEach(grainCopy.grain_copy_data.custom_copy_data.filled_answer_list, function(filled_answer, key){
            if(angular.isUndefined(filled_answer.isChecked)){
                filled_answer.isChecked = false;
            }
            if(angular.isUndefined(grainScheduled.grain_data.custom_data.correct_answer_list[key].isChecked)){
                grainScheduled.grain_data.custom_data.correct_answer_list[key].isChecked = false;
            }
            if(filled_answer.isChecked === grainScheduled.grain_data.custom_data.correct_answer_list[key].isChecked){
                if(grainScheduled.grain_data.custom_data.correct_answer_list[key].isChecked){
                    // response is check and good
                    // in this case numberGoodAnswer++
                    numberRecognizedAnswer++;
                    isCorrectReturnArray[key] = true;
                    if(grainScheduled.grain_data.custom_data.no_error_allowed && atLeastOneError){
                        // do not incremented
                    } else{
                        numberGoodAnswer++
                    }

                } else {
                    // response is not check and good
                    // in this case the answer is not good
                    isCorrectReturnArray[key] = undefined;

                }

            } else {

                isCorrectReturnArray[key] = false;
                atLeastOneError = true;
                numberRecognizedAnswer++;
                if(grainScheduled.grain_data.custom_data.no_error_allowed){
                    numberGoodAnswer = 0;
                }

                if(grainScheduled.grain_data.custom_data.correct_answer_list[key].isChecked){
                    // response is check and not good
                    isCorrectReturnArray[key] = true;
                } else {
                    // response is not check and not good
                    isCorrectReturnArray[key] = false;

                }
            }
        });
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:45,代码来源:QcmService.ts


示例5: placeToolbar

 element.on('editor-blur', 'editor', (e) => {
     placeToolbar();
     if($('editor.focus').length === 0){
         $('sticky-row').removeClass('hide');
     }
     $(e.target).parents('grid-cell').data('lock', false);
     let cell = $(e.target).parents('grid-cell .media-wrapper');
     let cellScope = angular.element(cell[0]).scope();
     cellScope.cell.focus = false;
     scope.$apply();
 });
开发者ID:web-education,项目名称:pages,代码行数:11,代码来源:drawing-grid.ts


示例6: function

            link: (scope:any) => {

                var result = AssociationService.automaticCorrection(scope.grainScheduled, scope.grainCopy);
                scope.isCorrect = result.answers_result;
                if (angular.isUndefined(scope.grainCopy.calculated_score) || scope.grainCopy.calculated_score === null) {
                    scope.grainCopy.calculated_score = result.calculated_score;
                    scope.$emit('E_UPDATE_GRAIN_COPY', scope.grainCopy);
                }

                scope.updateGrainCopy = function () {
                    if (scope.isTeacher) {
                        scope.$emit('E_UPDATE_GRAIN_COPY', scope.grainCopy);
                    }
                };
            }
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:15,代码来源:viewAssociation.ts



注:本文中的entcore.angular类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript entcore.idiom类代码示例发布时间:2022-05-25
下一篇:
TypeScript entcore._类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap