在此使用此日历工具,http://bootstrap-calendar.azurewebsites.net/。
我在这行代码中的calendar.js中遇到了一个问题:
Calendar.prototype._loadTemplate = function (name) {
if (this.options.templates[name]) {
return;
}
var self = this;
$.ajax({
url: self._templatePath(name),
dataType: 'html',
type: 'GET',
async: false,
cache: this.options.tmpl_cache
}).done(function (html) {
self.options.templates[name] = _.template(html);
});
};
浏览器正在抛出“无法加载资源:服务器已响应” 状态为500(URL重写模块错误。)
奇怪的是我在本地计算机上没有出现任何错误,但是在通过服务器(IIS)运行此代码时我只会收到错误。
即使在服务器上,也不会始终显示此错误。每当我刷新页面时它都会随机出现。
任何想法,这个问题是什么?
答案 0 :(得分:1)
我刚刚发现IIS服务器上有一些端口转发问题,我在URL上使用了主机名,如www.tilda.com,我用服务器的实际URL替换它,现在我没有遇到任何问题
感谢。