我想爲使用python後端的應用程序自動創建代碼。我希望用python腳本將幾行javascript代碼添加到js文件中。有人能指導我嗎?在python代碼中編輯JavaScript文件中的代碼
我的代碼如下所示:
angular.module('app').config(['$routeProvider',
function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: '/static/partials/home.html',
controller: 'HomeController'
})
.when('/hello', {
templateUrl: '/static/partials/hello.html',
controller: 'HelloController'
})
}
]);
我想要動態地從後端這是在添加蟒另一個URL「/指數」。
添加代碼後,因此,它應該如下所示:
angular.module('app').config(['$routeProvider',
function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: '/static/partials/home.html',
controller: 'HomeController'
})
.when('/hello', {
templateUrl: '/static/partials/hello.html',
controller: 'HelloController'
})
.when('/index', {
templateUrl: '/static/partials/index.html',
controller: 'IndexController'
})
}
]);
您是否希望將文本打印到python文件中?檢查[輸入和輸出文檔](https://docs.python.org/3/tutorial/inputoutput.html)。 – PaSTE
我想用python腳本編輯JavaScript文件(.js擴展名)中的代碼。 –
這是動態添加代碼的錯誤方法。問題得到了downvote..just試圖澄清? –