1

在 Satchmo 代码 (satchmo/satchmo/apps/satchmo_store/contact/templates/contact/_state_js.html) 中,以下 JavaScript 在 Internet Explorer 版本 6 中导致错误:

/**
* Required for Django's CSRF protection when using AJAX
* Taken from here - http://docs.djangoproject.com/en/dev/ref/contrib/csrf/
*/

$('html').ajaxSend(function(event, xhr, settings) {
    function getCookie(name) {
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
    if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
        // Only send the token to relative URLs i.e. locally.
        xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
    }
});

具体来说,IE 引用了以下行:

xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));

问题出现在包含“国家”和“省”的表单中。显然,如果国家发生变化,那么可用的省份必须发生变化。一旦用户选择了一个国家,Explorer 就会报告这个错误:

Line: 239
Char: 9
Error: Type mismatch
Code: 0
URL: http://10.1.1.7:8000/checkout/

谁能建议这里的问题是什么?我也不明白为什么它应该是“类型不匹配”?

非常感谢,托马斯

4

0 回答 0