0

我对 Ajax 有一个奇怪的问题。

var base_url = 'https//m4th.nl/'; // Alle groepen van deze school ophalen
$.ajax({
    type: "POST",
    async: false,
    url: base_url + "rapportage/get/groups/",
    success: function(data) {
        $.each($.parseJSON(data), function(i, item) {   
            $('select[name="leerling-groep"]').append('<option value="' + item.id + '">' + item.naam + '</option>');    
        });
    }
}); 

但是在我的控制台中,我收到了这个错误:

“网络错误:404 未找到 - https://m4th.nl/rapportage/https//m4th.nl/rapportage/get/groups/

很奇怪,因为 url 的输入没问题,但是代码重复了 url。

有人知道我做错了什么吗?

谢谢!

4

1 回答 1

4

更改此行

var base_url = 'https//m4th.nl/';

var base_url = 'https://m4th.nl/';

在 https 使浏览器将基本 url 视为扩展名 -url 之后,您缺少冒号

于 2013-08-31T11:46:28.740 回答