私はこの休日に働いて、自分のコードが HTTPS で動作しないことを確認しました。私の LOCALDEV は HTTP で、本番サーバーは HTTPS です。
何らかの理由で、私がローカルに持っているときに、YUI が JS を取得しようとしています。
私はサーバー上にそれを持っています........
そして最後に私のコード:
YUI().use('autocomplete', 'autocomplete-filters', 'autocomplete-highlighters', function (Y) {
var notes = [
"Dr Follow Up Complete Notes",
"Fax Document Notes",
"Event Notes",
"Email Information Notes",
"Corresponding Document Notes",
"Return Call Notes",
"Admit Notes",
"Discharge Notes",
"Other Notes",
"Excellent Resource Notes",
"Good Resource Notes",
"Neutral Resource Notes",
"Poor Resource Notes",
"Unacceptable Resource Notes",
];
var inputNode = Y.one('#name');
inputNode.plug(Y.Plugin.AutoComplete, {
resultFilters : 'phraseMatch',
resultHighlighter: 'phraseMatch',
source : notes,
minQueryLength : 0
});
inputNode.ac.get('boundingBox').setStyle('zIndex', 50);
inputNode.on('focus', function () {
inputNode.ac.sendRequest('');
})
================================================== ================================
これは私が追加した後です: base: 'include/javascript/yui3/build'
私のビルドにはそのディレクトリがありません。