一:中文資源
進去後台 configuration -> languages
新增一條簡體中文的記錄,儲存後匯入中文包,頁面頂部切換語言即可。
二:ui漢化
libraries -> nop.core -> commonhelper - > settelerikculture() 方法
新增引用
~/administration/scripts/kendo//cultures/kendo.culture.zh-cn.min.js
", kendoversion));
string.format("
~/administration/scripts/kendo//cultures/kendo.messages.zh-cn.js
", kendoversion));
三:編輯器presentation -> nop.admin -> views -> shared -> editortemplates 下建立頁面 ueditor.cshtml
@model string在後台呼叫編輯器@using nop.core
@using nop.core.domain.common
@using nop.services.security
@using nop.web.framework.ui
@@html.textarea(
string.empty, /*
name suffix
*/viewdata.templateinfo.formattedmodelvalue
/*initial value */)
效果如下:
Yii系列 02 定製 Web App
當僅有乙個yii based 應用,或者需要開發用於發布的web index.php中,require once dirname file protected framework yii.php 在protected config main.php中,修改basepath指向protected目錄,...
Apche日誌系列 3 定製日誌
有時候我們需要定製apache預設日誌的格式和內容,比如增加或減少日誌所記錄的資訊 改變預設日誌檔案的格式等。本文介紹可以用日誌記錄的所有資訊,以及如何設定apache使其記錄這些資訊。一 定義日誌格式 定製日誌檔案的格式涉及到兩個指令,即logformat指令和customlog指令。預設http...
LeetCode系列39 組合總和
給定乙個無重複元素的陣列 candidates 和乙個目標數 target 找出 candidates 中所有可以使數字和為 target 的組合。candidates 中的數字可以無限制重複被選取。說明 所有數字 包括 target 都是正整數。解集不能包含重複的組合。示例 1 輸入 candid...