2017年3月18日 星期六

透過 ng-click 動態改變 href 並自動點選

html
===
<a target="中獎發票" detail ng-model="data.id">詳細</a>


javascript
===
.directive("detail", ['$http', function ($http) {
            return {
                require: "ngModel",
                link: function (scope, element, attributes, ngModel) {
                    element.on('click', function (event) {
                        $http.post('@Url.Action("詳細資料")', { id: ngModel.$viewValue })
                            .then(function (result) {
                                element.attr('href', result.data);                              
                       }).catch(function (data) {
                           console.log(data);
                           if (data.statusText != '') alert(data.statusText);
                           else alert('發生錯誤,請重新整理頁面後再試一次');
                       });
                    });
                }
            }
        }])

沒有留言:

vue3-simple-alert 學習心得

官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({     title: '請輸入原因',     input: 'text',     showCancel...