Heim > Fragen und Antworten > Hauptteil
PHP中文网2017-04-11 12:10:06
如下3种方法:
1、 搭建本地webserver,比如webstorm自带webserver
2、 通过配置浏览器访问本地文件
给chrome加上启动参数:
--allow-file-access-from-files 或 --disable-web-security
谷歌浏览器快捷方式,右键属性将目标位置中加上启动参数
C:\Users\xxx\AppData\Local\Google\Chrome\Application\chrome.exe --disable-web-security
3、 使用mock数据,兼容jquery ajax接口
https://github.com/jakerella/...
$.mockjax({
url: "/restful/webservice",
dataType: "json",
response: function(settings) {
this.responseText = {
randomText: "random " + Math.random()
};
}
});