用于jquery ajax的sublime片段无法呈现

时间:2014-04-18 15:13:42

标签: jquery ajax sublimetext code-snippets sublimetext3

试图弄清楚为什么这个崇高的文字片段不会从键盘快捷键呈现:

<snippet>
    <content><![CDATA[
var url = '';

var jqxhr = $.ajax(url)
    .done(function() {
        console.log('success');
    })
    .fail(function() {
        console.log('error');
    })
    .always(function() {
        console.log('complete');
    });
]]></content>
    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
    <tabTrigger>jsajax</tabTrigger>
    <!-- Optional: Set a scope to limit where the snippet will trigger -->
    <!-- <scope>source.python</scope> -->
</snippet>

如果我将其编辑为一个简单的url变量,它将呈现正常,所以我猜测ajax请求中有一些无效,但我无法弄清楚原因。我正在使用崇高的文字3

1 个答案:

答案 0 :(得分:3)

你必须逃避美元符号:\$