试图弄清楚为什么这个崇高的文字片段不会从键盘快捷键呈现:
<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
答案 0 :(得分:3)
你必须逃避美元符号:\$