我正在尝试使用 jquery $.get
/$.load
函数加载文本文件的内容,但由于路由规则而出现错误。
我的代码如下:
$.get(
'/root/test.txt',
function(data) {
$('#textfile').html("");
lines = data.split("\n");
for (i = 0; i < lines.length; i++) {
$('#textfile').append("<div class='row-fluid'>");
$('#textfile').append(lines[i]);
$('#textfile').append("</div>");
}
}
);
我收到此错误:
在 2013-01-18 14:36:30 +0700
由 ErrorsController#routing 作为 TEXT
参数处理 127.0.0.1 开始 GET "/root/test.txt" 参数:{"a"=>"root/test"}
呈现公共/404.html.erb 在 layouts/responsive (0.6ms)
有什么建议可以让它工作吗?