我有一个我创建的自定义JSON文件。我希望它加载到我的Wordpress页面。下面是我正在使用的代码。它不断返回错误控制台日志“没有加载”。看起来我已正确对齐所有内容,并且json文件的URL有效。有什么建议?我找不到任何关于人们在Wordpress页面中创建自己的自定义JSON文件的帖子。大多数帖子都来自已经使用Wordpress创建的数据库内容。谢谢!
<script type="text/javascript">
/* enter script here that loads JSON - ajax call */
jQuery(document).ready(function($){
$.ajax({
dataType: 'json',
success: function(data) {
console.log("success loading data!");
},
error: function(text) {
console.log("did not load");
},
url: "json/jsonFile.json"
});
});