我不確定這是如何工作的,但我需要在下面的代碼中放入if語句。 我知道Javascript支持,但是不燼,還在學習它,因爲我去 我的文件名爲:CatalogueListController.js 和代碼在:在JS文件中使用帶有餘燼的If語句
App.CataloguelistController = Em.ArrayController.extend(Ember.PaginationSupport, {
needs: ["search", "accountBrowse"],
content: [],
total: 0,
isLoading: false,
outofcount: 0,
searchquery: '',
classid: 0,
attributelist: '',
processguid: '',
quotetypeMetaBinding: "App.metaDataController.QUOTETYPE",
addToBulk: function(context) {
var self = this,
accountguid = App.selectedAccountGuid,
quotetype = (context && context.metacode) ? context.metacode : App.currentQuotetype,
itemArray = [];
//some more code here
},
//i need to put the if here if it is for a certain accountguid then have
currentViewList: true,
currentViewBulk: false,
//else have this
currentViewList: false,
currentViewBulk: true,
mainPage: false,
andOr: [
{"name": "Match All", "value": "AND"},
{"name": "Match Any", "value": "OR"}
],
andOrSelected: 'AND',
我已經把在那裏我需要有如果意見。 請幫忙嗎? 感謝
是什麼將觸發改變的事件?你可以顯示一些jQuery代碼,不需要工作,只是爲了知道你想實現什麼? –