需要更好的描述性车把变量别名

时间:2018-09-06 04:31:38

标签: jquery ajax handlebars.js

首先,它运行得非常好(并不意味着没有改进的余地,因此这里也欢迎使用技巧)。不过,我担心的是从现在开始需要一年的时间,如果我保持现状,我将不知道这意味着什么,所以我正在寻找一种方法来改进我的代码。 / p>

var handleActivityEdit = function(id){
    var myContainer = $("#myContainer");
    $.ajax({
        url: "/?go=foo.bar&json",
        type: "post",
        dataType: "JSON",
        data: 'ID=' + id,
        cache: false
    }).then(
        function(response) {
            var html = myContainerTemplate({ 
                viewData: response.data.activityName.DATA
            });
            myContainer.html(html);
        },
        function() {
            console.log("OH SNAP!");
        }
    );       
}

车把模板看起来像这样(此处为简化起见而简化),特别是<ul> {{#each viewData}} <li>import matplotlib.pyplot as plt import numpy as np x, y = np.loadtxt('data.txt', delimiter=',', unpack=True) plt.plot(x,y, label='test') plt.xlabel('Date') plt.ylabel('F10.7 flux') plt.title('Solar Cycle 23') plt.legend() plt.show() </li> {{/each}} </ul> 是我想知道是否可以更改此变量名的方法(例如,在SQL中,您可以选择thisColumnName作为ThatColumn)。

1996 08 01, 82.8
1996 08 02, 81.9
1996 08 03, 81.6
1996 08 04, 79.9
1996 08 05, 76.2
1996 08 06, 75.1

0 个答案:

没有答案