1. 程式人生 > >跨域ajax阻止option請求

跨域ajax阻止option請求

直接上程式碼
beforeSend: function(xhr) {
                    try {
                        xhr.withCredentials = true;
                    } catch (e) {
                        var nativeOpen = xhr.open;
                        xhr.open = function() {
                            var result = nativeOpen.apply(xhr, arguments);
                            xhr.withCredentials = true;
                            return result;
                        };
                    }
                }
這個東西還沒有理解,只是留個記錄,有時間整理一下