作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里我使用 ajax 调用从 Controller 获取 json 对象。
<script>
$(document).ready(function(){
$.ajax({
cache: false,
type: "GET",
url: "userid_12345.json",
dataType: 'json',
success: function(data){
somemethod();
},
error:function(){
alert("Sorry!");
}
});
});
</script>
此处,此 userid_12345.json 文件将位于同一路径中。将有多个基于用户 ID 的 json 文件,如 userid_12345.json
、userid_22345.json
、userid_55345.json
。
因此,我需要提供动态 URL 以从路径中获取 .json 文件。像这样.. userid_?.json
。 ?将替换用户标识
如何实现?
最佳答案
像这样:
<script>
var myDynUrl = "http://wherever/userid_" + dynamicValue + ".json"
$(document).ready(function(){
$.ajax({
cache: false,
type: "GET",
url: myDynUrl,
dataType: 'json',
success: function(data){
somemethod();
},
error:function(){
alert("Sorry!");
}
});
});
</script>
关于javascript - 如何在 ajax 调用中将动态 json 文件名作为 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26542476/
我是一名优秀的程序员,十分优秀!