如何在Julia错误变量中返回变量未定义

时间:2016-05-20 21:07:30

标签: julia

您好我有问题我尝试返回我定义的变量,但我得到的错误变量未定义

function retrievePhones(idUser) {
  var url = '/user/birthday/phone/'+ idUser;
  console.log('>>>' + url);
  var result = $('#phoneList').empty().load(url);
  return result;
}

我收到错误"家庭未定义" ,为什么我得到这个错误,如何纠正我的代码?

1 个答案:

答案 0 :(得分:2)

您的代码中存在许多错误。 你应该从简单的东西开始构建它,确保它在每一步都有效。

这是一个有效的简化版本供您比较,看看你做错了什么:

DefaultStyledDocument document = new DefaultStyledDocument();
JTextPane textpane = new JTextPane(document);
StyleContext context = new StyleContext();
// build a style
Style style = context.addStyle("test", null);
// set some style color
StyleConstants.setForeground(style, Color.RED);
// add some data to the document
document.insertString(0, "", style);


OR




JTextPane pane = new JTextPane();
SimpleAttributeSet set = new SimpleAttributeSet();
StyleConstants.setForeground(set, Color.red);
Document doc = pane.getStyledDocument();
doc.insertString(doc.getLength(), "Kleine ", set);

但是,由于您只是寻找数组的最小值,因此使用Julia有一种更简单的方法。