Laravel|在JavaScript中调用公共文件夹中的JSON文件时禁止访问

g9icjywg  于 2023-10-21  发布在  Java
关注(0)|答案(1)|浏览(108)

我是Laravel的初学者。我试图访问路径/js/ph-json/regions. json中的文件,控制台中的消息显示403 forbbiden。我怎么能允许这样做呢?

const url = '{{asset("ph-json/region.json")}}';
    // Populate dropdown with list of regions
    $.getJSON(url, function(data) {
        $.each(data, function(key, entry) {
            dropdown.append($('<option></option>').attr('value', entry.region_code).text(entry.region_name));
        })
    });

这应该得到json,但我不知道,但它是阻止访问。

pcrecxhr

pcrecxhr1#

你的道路是不正确的。改变你的道路,

const url = '{{asset("js/ph-json/regions.json")}}';

相关问题