$.ajax({
url : "billbrain:sellbill",
type : "POST", d
data : { customer_code: input }, // data sent with the post request
// handle a successful response
success : function(json) {
console.log(json); // log the returned json to the console
console.log("success"); // another sanity check
},
});
您可以在基模板中声明包含URL的全局对象,并使用url
模板标记:
<script>
windows.ajaxUrls = {
'billbrain-sellbill': {% url 'billbrain:sellbill' %}
}
</scrip>
在js文件中:
$.ajax({
url : window.ajaxUrl['billbrain-sellbill'],
...
});
或者使用https://github.com/mlouro/django-js-utils
我试图完成角快速入门教程,但我得到了CORS错误。 我在windows主机文件中的system32/drivers/etc/下配置了此主机: 我在apache中配置了这个虚拟主机 null 这是我的package.json: 这是我的index.html: 这是我的grunt ts编译器文件:
问题内容: 我正在尝试运行一个简单的应用程序。我有一个Express后端,在访问时会返回JSON字符串。当我运行服务器并通过AngularService向该链接发出请求时,出现以下错误: XMLHttpRequest无法加载localhost:4201/ticker。跨源请求仅支持以下协议方案:http,数据,chrome,chrome扩展名,https。 ,该模块与我的Express服务器一起使
问题内容: 我有一个非常简单的angular js应用程序的三个文件 index.html product-color.html app.js 使用名为productColor的自定义指令输入product-color.html的包含内容后,我就开始出现此错误: 可能出什么问题了?这是product-color.html的路径问题吗? 我所有的三个文件都在同一个根文件夹中 问题答案: 发生此错误是
问题内容: 我有一个非常简单的angular js应用程序的三个文件 index.html product-color.html app.js 使用名为productColor的自定义指令输入product-color.html的包含内容后,我就开始出现此错误: 可能出什么问题了?这是product-color.html的路径问题吗? 我所有的三个文件都在同一个根文件夹中 问题答案: 发生此错误是
我有一个非常简单的angular js应用程序的三个文件 index.html 产品-color.html 应用程序JS 当我使用名为ProductColor的自定义指令输入product-color.html的include时,就开始出现此错误: 可能出了什么问题?这是product-color.html的路径问题吗? 我的三个文件都在同一个根文件夹中